标签: php regex
我正在对字符串进行preg替换,该字符串应仅包含字母数字(utf-8),点,空格和连字符。你可以建议我用PHP做一个正则表达式吗?
答案 0 :(得分:2)
preg_replace('/[^-\pL.\s]/u', '', $entity);