2014-02-10 322 views
-1

我想RegExp與許多條件檢查字符串匹配正則表達式

  1. 字符串長度必須爲7
  2. 前兩個數字必須是數字。
  3. 第三位數字必須是E
  4. 第四和第五位必須是數字,不能大於12
  5. 第六和第七位必須是數字

enter image description here

回答

4

請嘗試:

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

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