遇到此preg_replace()

时间:2017-03-09 22:54:40

标签: php regex preg-replace

我已经和这个代码争斗了两天了,我已经搜索了很多相关的帖子,没有任何线索。我需要帮助。 代码:

$string = "Hello, can you please come here?"
$t = preg_replace('/[^.,:;?!@a-zA-Z0-9 \'\-]/', '', $string);

此代码可以完美匹配除逗号(,)之外的所有字符。假设传递给't'的值是 - 您好,可以来吗? 我总是得到的输出是 - 你能来吗?没有逗号(,)。 我需要有关如何匹配逗号的帮助,因为逗号是上面preg_replace中的第二个字符。

0 个答案:

没有答案