我有一个带有特殊类型字段的表格,这需要验证。 条件
我尝试过这种模式
/[a-zA-Z0-9]+|[\s]+|[\.]+|[\&]+|[\-]+/
但是它没有给出预期的输出。
示例:
abcd xyz ->must pass test(letter must, 5<characters count<100,space optional)
abcdxyz ->must pass test(letter must, 5<characters count<100,space optional)
abcd & ->must pass test
abcd1234 ->must pass test
abcd.xyz.12 ->must pass test
123456 ->must fail test(no letters found)
&&&&&&& ->must fail test(no letters found)
&&&--..& ->must fail test(no letters found)
123 abcd.xyz 777-& !$ ->must fail test(!$ are not allowed)
我可以分别计算字符串的长度,但其余部分需要使用正则表达式。 我正在使用
str.match(/regex/)
答案 0 :(得分:0)
如果您可以单独测试长度,则可以完成此任务:^(?:[a-zA-Z0-9 .&-]*)?[a-zA-Z]+(?:[a-zA-Z0-9 .&-]*)?$
。这里很难计数的是,{5,100}
将测试子模式的出现次数,而不是其找到的字母总数。
解释(按顺序):
根据Regex101 code generator改编的示例:
const regex = /^(?:[a-zA-Z0-9 .&-]*)?[a-zA-Z]+(?:[a-zA-Z0-9 .&-]*)?$/;
const strs = [
'abcd xyz',
'abcdxyz',
'abcd &',
'abcd1234',
'abcd.xyz.12',
'123456',
'&&&&&&&',
'&&&--..&',
'123 abcd.xyz 777-& !$'
];
let m, i, l = strs.length;
for(i = 0; i < l; i++){
if( (m = strs[i].match(regex)) ){
console.log('Found match: ', m);
}else{
console.log('Doesn\'t match: ', strs[i]);
}
}
注意:如果您打算将其用作密码,请rules like this are a bad idea,现在正式劝阻