Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need help coming up with a regex to make sure the user enters a valid date The string will be in the format of mm/dd/yyyy

Here is what I have come up with so far.

/\[1-9]|0[1-9]|1[0-2]\/\d{1,2}\/19|20\d\d/

I have validated the regex where the user cannot enter a day higher than 12 and the years have to start with either "19" or "20". What I am having trouble is figuring out some logic for validating the day. The day should not go over 31.

share|improve this question
5  
A regex seems like a strange tool for this problem. Can you not convert the text to a date and check its values? – Mr. Jefferson May 20 '11 at 20:01
1  
While this could theoretically be done, a regex that handled the correct number of days for each month (including leap years) would be insanely complex. Why not just split the date up and test each component? (Or better yet, use one of the many date parsers on CPAN.) – cjm May 20 '11 at 20:06
@Zerobu, why do you ask the same question again than a year ago??? questions/2573466/matching-a-date-in-perl. OK, a year ago you didn't got a regex answer, but I hope you see from @Seth answer regex is not useful to validate a date. – stema May 20 '11 at 20:39
If I wanted all conditions such as the leap year, then I would have said so – Zerobu May 20 '11 at 20:49
@Zerobu, my point is simply that most people start thinking they just need a simple regex for a date string, but end up needing something "real". If that's not the case for you, no problem :) If it is, well, my answer will still be here when you need it! – Ryley May 20 '11 at 20:53
show 1 more comment

6 Answers

up vote 4 down vote accepted

Regex for 0-31:

([0-2]?[1-9]|3[01])

Or if you don't want days with a preceding zero (e.g. 05):

([12]?[1-9]|3[01])
share|improve this answer
Thanks apparently the other posters had a hard time figuring out what i was looking for, even though I already said what I needed – Zerobu May 20 '11 at 20:47
3  
That's because the date won't necessarily be valid. It won't, for example, reject 31 February 2011. Regex it the wrong tool for this. – MRAB May 20 '11 at 22:56
1  
was 1974 a leap year? what about 2000? – Joel Berger May 21 '11 at 3:18
Wouldn't this allow a value of '00'? – Jeromy French Apr 8 at 19:56
Yeah, good catch. Edited. – bluepnume Apr 9 at 14:27
use DateTime;

Other solutions are fine, probably work, etc. Usually, you end up wanting to do a bit more, and then a bit more, and eventually you have some crazy code, and leap years, and why are you doing it yourself again?

DateTime and it's formatters are your solution. Use them! Sometimes they are a bit overkill, but often that works out for you down the road.

my $dayFormat = new DateTime::Format::Strptime(pattern => '%d/%m/%Y');
my $foo = $dayFormat->parse_datetime($myDateString);

$foo is now a DateTime object. Enjoy.

If your date string wasn't properly formatted, $foo will be "undef" and $dayFormat->errstr will tell you why.

share|improve this answer
I never understand why people want to reimplement anything let alone something as complicated as date parsing! – Joel Berger May 21 '11 at 3:15

^(((((((0?[13578])|(1[02]))[.-/]?((0?[1-9])|([12]\d)|(3[01])))|(((0?[469])|(11))[.-/]?((0?[1-9])|([12]\d)|(30)))|((0?2)[.-/]?((0?[1-9])|(1\d)|(2[0-8]))))[.-/]?(((19)|(20))?([\d][\d]))))|((0?2)[.-/]?(29)[.-/]?(((19)|(20))?(([02468][048])|([13579][26])))))$

From http://regexlib.com/DisplayPatterns.aspx?cattabindex=4&categoryId=5

Validates the correct number of days in a month, looks like it even handles leap years.

You can of course change [.-/] with / to only allow slashes.

share|improve this answer
8  
+1 for a comical amount of complexity. @Zerobu, hopefully this shows you why regex is a bad idea for this problem! Even this beast isn't fully correct: as the original author notes, it incorrectly matches 02/29/1900. – OpenSauce May 20 '11 at 20:23

Try it:
/(0?[1-9]|1[012])\/(0?[1-9]|[12][0-9]|3[01])\/((19|20)\d\d)/

share|improve this answer

Is regular expression a must? If not, you better off using a different approach, such as DateTime::Format::DateManip

my @dates = (
    '04/23/2009',
    '01/22/2010 6pm',
    'adasdas',
    '1010101/12312312/1232132'
);

for my $date ( @dates ) 
{
    my $date = DateTime::Format::DateManip->parse_datetime( $date );
    die "Bad Date $date"  unless (defined $date);
    print "$dt\n";
}
share|improve this answer

This isn't all that hard...

qr#^
    (?: 0[1-9] | 1[012] )
    /
    (?:
        0[1-9] | 1[0-9] | 2[0-8]
        | (?<! 0[2469]/ | 11/ ) 31
        | (?<! 02/ ) 30
        | (?<! 02/
             (?= ... 
                 (?: 
                     .. (?: [02468][1235679] | [13579][01345789] )
                     | (?: [02468][1235679] | [13579][01345789] ) 00
                 )
             )
        ) 29
    )
    /
    [0-9]{4}
    \z
#x
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.