Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 preg_replace 我只想允许字母数字和空格,但 ereg_replace("[^A-Za-z0-9\w\] 删除所有空格。
ereg_replace("[^A-Za-z0-9\w\]
我能做些什么来修复它?
提前致谢
你忘了一个空格
[^A-Za-z0-9\w\ ] ______________^
例如:
$returnValue = preg_replace('@[^A-Za-z0-9\w\ ]@', '', 'I forgot a %space!!!'); // I forgot a space