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 testexp=/^[a-zA-Z0-9-_&]+$/;
-如果您希望将其视为真正的 char ,则需要将其放在课程的末尾(或开头) :
-
/^[a-zA-Z0-9_&-]+$/
您也可以使用快捷方式\w,与 相同[a-zA-Z0-9_]。因此:
\w
[a-zA-Z0-9_]
/^[\w&-]+$/
[a-zA-Z0-9_]可以用\w(单词字符)缩短
试试这个正则表达式:
var testexp = /^[\w&-]+$/;
使用这个正则表达式