与正则表达式匹配

时间:2014-02-10 04:51:15

标签: javascript jquery regex

我想通过RegExp检查一个字符串

  1. 字符串长度必须为7
  2. 前两位必须是数字。
  3. 第三位数字必须为E
  4. 第四位和第五位必须是数字,且不能大于12
  5. 第六位和第七位必须为数字
  6. enter image description here

1 个答案:

答案 0 :(得分:4)

请尝试:

var re = /^[0-9]{2}E(0[0-9]|1[0-2])[0-9]{2}$/;

if (re.test(yourstring))
   // match
else
   // not match