Hello.
There's regular expression (pcre):
where $str - unicode stringCode PHP:$preg = "#\b($str)\b#iu";
Metacharacter \b doesn't work with unicode chars (at least russian), only Latin a-z. Is there any unicode analogue for \b? (\p{L} for \w, \p{Nd} for \d, ? for \b).
Thanks.



Bookmarks