This example works fine:

echo preg_replace("/\bI\b/u", 'we', "I can"); // we can

This one were russian letters are used does not work even though I use "u" modifier:

echo preg_replace("/\bЯ\b/u", 'мы', 'Я могу'); // still "Я могу"

So the question is what should I do to fix this?
Thanks.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In PCRE (the library used by preg_replace), \b refers only to word boundaries in an ASCII sense, i.e., only [a-zA-Z0-9_] are word characters.

If you want to match a Я character that has no letters, digits or _ immediately before or after, you can use:

(?<![\p{L}0-9_])Я(?![\p{L}0-9_])

You still have to use the u modifier.

link|improve this answer
Thank you very much for explanation and solution, it works perfectly for my needs. – Anton Aug 29 '10 at 14:49
feedback

Word boundaries are often counter-intuitive.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.