标签: php whitespace preg-match match preg-match-all
我希望在正则表达式中忽略A-Z,0-9和空格,目前我有这个,它可以工作,但是空格也被忽略但是我需要它们。
preg_match_all("/[^\w]/",$string,$matches);
答案 0 :(得分:1)
\s代表空格字符。因此,如果您想匹配除字词(\w)或空格字符(\s)以外的所有字符,请尝试以下操作:
\s
\w
preg_match_all("/[^\w\s]/",$string,$matches);