preg_match_all没有使用

时间:2017-09-25 19:58:58

标签: php html

我尝试检测用户何时为提及的用户写@所以我使用这个PHP代码:

$regex = '/@(\S+)/';

preg_match_all( $regex, $text, $matches );

它正在使用这样的普通文本:“@John welcome”。

但是,如果文字包含 ,则说明不是这样:“@John 欢迎”

如何解决这个问题?

0 个答案:

没有答案