用于表单字段验证的正则表达式

时间:2019-02-25 13:41:53

标签: javascript regex

我有一个带有特殊类型字段的表格,这需要验证。 条件

  1. 它必须至少包含1个字母。大写和小写都允许[强制性]
  2. 它可以包含数字[可选]
  3. 它可以包含以下任意1个或全部3个特殊字符连字符(-),&符(&),句点(。)[可选]
  4. 长度最小为5,最大值为100
  5. 字母之间可以包含空格[可选]

我尝试过这种模式

/[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/)

1 个答案:

答案 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,现在正式劝阻