What is the correct regular expression to use to validate a date like. 2009-10-22 or 2009-01-01 etc. Platform PHP
|
up vote
0
down vote
favorite
|
|||||||||||||
|
|
up vote
7
down vote
accepted
|
This (from regexplib.com) will match what you want, and perform checks for leap years, days-per-month etc. It's a little more tolerant of separators than you want, but that can be easily fixed. As you can see, it's rather hideous. Alternatively (and preferably in my opinion) you may want to simply check for figures in the correct places, and then perform leap year and days-per-month checks in code. Sometimes one regexp isn't so understandable and there's greater clarity in performing the checks in code explicitly (since you can report precisely what's wrong - "only 30 days in November", rather than a "doesn't match pattern" message, which is next to useless) |
||||||||||||||
|
|
up vote
3
down vote
|
If you want something simple that does a little more than just validates format, but doesn't go as far as validating how many days is in the month that is entered, or leap years, you can use this:
This example allows years 19xx and 20xx |
||
|
|
up vote
1
down vote
|
As you have to deal with accepting 2009-02-28 but not 2009-02-29 but accept 2008-02-28 you need more logic that 1 think a regex can give. (But if someone can show it I would be impressed) I would try to convert it to a date and report if the conversion failed or if you you language has a check date function use that. |
||
|
|
|
up vote
1
down vote
|
You can additionally, make sure that year must start with 1 or 2: |
||
|
|
|
up vote
1
down vote
|
found this on the web tested it with a few dates and looks stable, for dates between 1900 and 2000:
|
||||
|
|
up vote
1
down vote
|
OK, a regex that will validate month and day ranges could be
If you want to restrict the years, say, from 1900 to 2050, you could end up with
They will not catch "subtly wrong" dates like February 31st, so it's really quite clear that a sanity check needs to be performed outside of the regex. |
||
|
|
|
up vote
0
down vote
|
In .NET Regex:
|
||
|
|
up vote
0
down vote
|
or
or ... simply read first regex tutorial |
||
|
|
|
up vote
0
down vote
|
but no regular expression can prevent someone to enter "9867-39-56" |
||||||||
|
|
up vote
0
down vote
|
For a complete validation (which would include verifying that the day, month and year parts are valid) a Regex is not the tool of choice. Apart from month issues you'd get into trouble with leap years... So, if you just want to check if the rough format is correct, or isolate the different parts (year-month-day), a regex is fine.
This is already pretty exact and captures the year (0..9999), month and day into capture groups, ready for parsing... |
||
|
|
|
up vote
0
down vote
|
If you can rely on more than a regular expression, an hybrid solution by using Posix functions date() and time() delivered with PHP could look like this:
It's not elegant plus you'll be limited by Unix Epoch time (from January 1 1970 00:00:00 GMT to January 19 2038 03:14:07 GMT), but it's reliable and it's well supported in PHP. |
||
|
|