使用Regex验证日期

时间:2012-10-17 11:29:11

标签: javascript regex validation

我需要一个正则表达式来模式匹配以下内容 -

mm/dd/yyyy

以下日期条目应通过验证:

  • 05/03/2012
  • 2012年5月3日
  • 2012年5月3日
  • 5/3/2012

此外,在验证上述regex后,将上述日期string转换为Date对象的最佳方式是什么?

4 个答案:

答案 0 :(得分:1)

你应该使用split,parseInt和the Date constructor一次性进行检查和解析:

function toDate(s) {
  var t = s.split('/');
  try {
     if (t.length!=3) return null;
     var d = parseInt(t[1],10);
     var m = parseInt(t[0],10);
     var y = parseInt(t[2],10);
     if (d>0 && d<32 && m>0 && m<13) return new Date(y, m-1, d);
  } catch (e){}
}

var date = toDate(somestring);
if (date) // ok
else // not ok

DEMONSTRATION :

01/22/2012 ==> Sun Jan 22 2012 00:00:00 GMT+0100 (CET)
07/5/1972 ==> Wed Jul 05 1972 00:00:00 GMT+0100 (CEST)
999/99/1972 ==> invalid

作为本页的其他答案,2月份不会扼杀31。这就是为什么出于所有严肃的目的,你应该使用像Datejs这样的库。

答案 1 :(得分:0)

这个应该这样做:

((?:[0]?[1-9]|[1][012])[-:\\/.](?:(?:[0-2]?\\d{1})|(?:[3][01]{1}))[-:\\/.](?:(?:[1]{1}\\d{1}\\d{1}\\d{1})|(?:[2]{1}\\d{3})))(?![\\d])

(取自txt2re.com)

您还应该查看this link

答案 2 :(得分:0)

"/^(0?[1-9]|[12][0-9]|3[01])[\/\-](0?[1-9]|1[012])[\/\-]\d{4}$/"

link:Javascript date regex DD/MM/YYYY

答案 3 :(得分:0)

var dateStr = '01/01/1901',
    dateObj = null,
    dateReg = /^(?:0[1-9]|1[012]|[1-9])\/(?:[012][1-9]|3[01]|[1-9])\/(?:19|20)\d\d$/;
    //             01 to 12 or 1 to 9   /    01 to 31  or  1 to 9   /  1900 to 2099

if( dateStr.match( dateReg ) ){
    dateObj = new Date( dateStr ); // this will be in the local timezone
}