PHP preg_替换为Unicode字符
我有一个与此问题类似的问题:php preg_replace
在该问题中,他/她希望只允许使用字母、数字和_,但我只希望允许使用数字、字母和Unicode(非拉丁)字母和数字(我认为应该使用此的Unicode值(例如U+1F70
))。
我能做些什么?谢谢.
unicode
而不是自己列出unicode范围,您应该使用推荐答案字符类,如下所述:http://www.regular-expressions.info/unicode.html#block
preg_replace('/[^wdp{L}]/u', "", $str);
如果您反复尝试构造或解密regexp,请不要忘记查看Is there anything like RegexBuddy in the open source world?以获取帮助。
相关文章