Closed
Description
Feature request
What problem does this feature solve?
This add non-latin support for search plugin.
What does the proposed API look like?
It's not going to change API.
How should this be implemented in your opinion?
Now search plugin use this regex: (?=.*\bWORD\b)
and it works for latin words but not for non-latin ones and this is about \b
word boundaries.
We can use this alternative way to support both latin and non-latin characters:
(?=.*(?<=\s|^)WORD(?=\s|$))
Are you willing to work on this yourself?
Yes.