JavaScript 模式匹配
对于像 asklas@(((#
) 这样的输入,matchArray 变为 null 我该如何纠正此行为?我只想允许字符和数字..
function validateName(name) {
debug(name);
var namePat = /^(\[A-Za-z0-9]*)$/ ;
var matchArray = name.match(namePat);
if (!matchArray){
debug ("Invalid name,", name );
return false;
}
return true;
}
matchArray becomes null for input like asklas@(((#
How do I correct this behavior? I only want to allow characters and numbers..
function validateName(name) {
debug(name);
var namePat = /^(\[A-Za-z0-9]*)$/ ;
var matchArray = name.match(namePat);
if (!matchArray){
debug ("Invalid name,", name );
return false;
}
return true;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的正则表达式中有一个错误的反斜杠。应该是
(并且您也不需要捕获括号)。
There is one erroneous backslash in your regex. It should be
(and you don't need the capturing parentheses, either).
不确定在这种情况下您想要什么...如果您想要布尔输出,请使用 .test:
...但是 null 适合您的测试
(!matchArray)
就可以了。看起来你的正则表达式确实有一个拼写错误 - 你需要去掉左括号之前的反斜杠......
Not sure what you want in this case... if you want a boolean output, use .test:
... but null will work for your test
(!matchArray)
just fine.It does seem like you have a typo in your regular expression - you'll want to get rid of the backslash before the opening bracket...