admin管理员组文章数量:1345077
pls can somebody give the date validation regex, which will allow the following rules are
- It should allow mm/dd/yyyy, m/d/yyyy, mm/d/yyyy, m/d/yyyy (not allow yy)
- Number of days for month (30 and 31) validation.
- Feb month validation for leap & non leap years.
pls can somebody give the date validation regex, which will allow the following rules are
- It should allow mm/dd/yyyy, m/d/yyyy, mm/d/yyyy, m/d/yyyy (not allow yy)
- Number of days for month (30 and 31) validation.
- Feb month validation for leap & non leap years.
-
1
[0-9]{1,2}/[0-9]{1,2}/[0-9]{4}
or see stackoverflow./questions/5465375/… – SpYk3HH Commented May 9, 2013 at 13:06 - 2 @MarioDeSchaepmeester: please do not post LMGTFY links. – georg Commented May 9, 2013 at 13:19
- 1 @thg435 It's the first time I've ever done so, don't worry I'm not planning to do this more. This question just asked for it.. – MarioDS Commented May 9, 2013 at 13:24
- 1 @MarioDeSchaepmeester Before giving those type of ments, pls think once, who know's how to use Stack Overflow,they don't know how to use google... – User_MVC Commented May 9, 2013 at 19:18
3 Answers
Reset to default 3Don't try to parse date entirely with regex!Follow KISS principle..
1>Get the dates with this regex
^(\d{1,2})/(\d{1,2})/(\d{2}|\d{4})$
2> Validate month,year,day if the string matches with above regex!
var match = myRegexp.exec(myString);
parseInt(match[0],10);//month
parseInt(match[1],10);//day
parseInt(match[2],10);//year
Try this:
([0-9][1-2])/([0-2][0-9]|[3][0-1])/((19|20)[0-9]{2})
and then if you got a valid string from the above regex then with string manipulations, do something like below:
if(/([0-9][1-2])\/([0-2][0-9]|[3][0-1])\/((19|20)[0-9]{2})/.test(text)){
var tokens = text.split('/'); // text.split('\/');
var day = parseInt(tokens[0], 10);
var month = parseInt(tokens[1], 10);
var year = parseInt(tokens[2], 10);
}
else{
//show error
//Invalid date format
}
Here's a full validation routine
var myInput = s="5/9/2013";
var r = /^(\d{1,2})\/(\d{1,2})\/(\d{4})$/;
if(!r.test(myInput)) {
alert("Invalid Input");
return;
}
var a = s.match(r), d = new Date(a[3],a[1] - 1,a[2]);
if(d.getFullYear() != a[3] || d.getMonth() + 1 != a[1] || d.getDate() != a[2]) {
alert("Invalid Date");
return;
}
// process valid date
本文标签: jqueryRegex for Date Validation in javascriptStack Overflow
版权声明:本文标题:jquery - Regex for Date Validation in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743803463a2541742.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论