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.
我有一个当前匹配任何非数字字符的正则表达式:
var.replace(/[^0-9a-zA-Z ]/,'');
我现在需要保留空格和数字,但我很难修改它。
有什么帮助吗?
这是一个正则表达式,它将匹配所有不是数字或空格的东西..
[^0-9\s]
解释嘿正则表达式引擎:
1-匹配每一件事。
2- ^--> 那不是
^
3- 0-9--> 一个数字
0-9
4- \s--> 和一个空格
\s