正则表达式 - 不介意订单?

时间:2012-06-26 10:40:06

标签: javascript regex

我正在尝试创建一个可以接受一般SQL / Js日期的正则表达式,例如:

2012年2月31日

我已经制作了一个正则表达式:

(0[1-9]|[12]\d|3[01])[ ]+(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)[ ]+[12]\d{3}$

但我怎么能告诉正则表达式忽略项目的外观顺序:

所以它可以接受:

  Apr 31 2010
  2010 Apr 31 
  ...
  ...

2 个答案:

答案 0 :(得分:3)

使用前瞻断言的一种解决方案:

var myregexp = /^(?=.*(\b[A-Za-z]{3}\b))(?=.*(\b\d{1,2}\b))(?=.*(\b\d{4}\b))/;
var match = myregexp.exec(subject);
if (match != null) {
    month = match[1];
    days = match[2];
    year = match[3];
}

<强>解释

^             # Start of string
(?=           # Look ahead to see if the following can be matched:
 .*           #  Any number of characters
 (            #  followed by (capturing this in group no. 1)
  \b          #  Start of word
  [A-Za-z]{3} #  Three ASCII letters
  \b          #  End of word
 )            # End of capturing group no. 1
)             # End of lookahead assertion.
(?=           # Look ahead to see if the following can be matched:
 .*           #  Any number of characters
 (            #  followed by (capturing this in group no. 1)
  \b\d{1,2}\b #  a one- or two-digit number
 )            # etc.
)
(?=           # Lookahead no. 3
 .*
 (
  \b\d{4}\b   #  a four-digit number
 )
)

答案 1 :(得分:1)

您应该将字符汇集到组中,然后您可以使用OR以字符串中出现的不同顺序接受它们。您无法构建可以使用任何订单的通用正则表达式 - 您必须清楚地指定它们发生的所有订单。