1

我正在对应仅包含字母数字(utf-8)、点、空格和连字符的字符串进行预替换。你能建议我在 PHP 中使用正则表达式吗?

4

1 回答 1

2
preg_replace('/[^-\pL.\s]/u', '', $entity);
于 2013-01-25T05:50:06.163 回答