php regex word boundary matching in utf-8
Solution 1:
Even in UTF-8 mode, standard class shorthands like \w
and \b
are not Unicode-aware. You just have to use the Unicode shorthands, as you worked out, but you can make it a little less ugly by using lookarounds instead of alternations:
/(?<!\pL)weiß(?!\pL)/u
Notice also how I left the curly braces out of the Unicode class shorthands; you can do that when the class name consists of a single letter.
Solution 2:
Guess this was related to Bug #52971
PCRE-Meta-Characters like
\b
\w
not working with unicode strings.
and fixed in PHP 5.3.4
PCRE extension: Fixed bug #52971 (PCRE-Meta-Characters not working with utf-8).
Solution 3:
here is what I have found so far. By rewriting the search and replacement patterns like this:
$before = '(^|[^\p{L}])';
$after = '([^\p{L}]|$)';
var_dump(preg_replace('/'.$before.'weiß'.$after.'/iu', '$1weiss$2', 'weißbier'));
// Test some other cases:
var_dump(preg_replace('/'.$before.'weiß'.$after.'/iu', '$1weiss$2', 'weiß'));
var_dump(preg_replace('/'.$before.'weiß'.$after.'/iu', '$1weiss$2', 'weiß bier'));
var_dump(preg_replace('/'.$before.'weiß'.$after.'/iu', '$1weiss$2', ' weiß'));
I get the wanted result:
string 'weißbier' (length=9)
string 'weiss' (length=5)
string 'weiss bier' (length=10)
string ' weiss' (length=6)
on both my windows computer running apache and on the hosted linux webserver running apache.
I assume there is some better way to do this.
Also, I still would like to setlocale my windows computer to utf-8.