Here is a slightly goofy proof of concept in another direction.
use Date::Calc qw( check_date );
while ( <DATA> )
{
chomp;
my @date = ( /(\d+)/g )[2,0,1];
print and print check_date(@date) ? "-->Yep\n" : "-->Nope\n";
}
__END__
1.1.1
6/4/1989
2-29-2000
2/29/2001
I don't know how it compares to strptime but Date::Calc is extremely fast so if it's important, it might be worth benchmarking. Correctly rearranging the DMY and accounting for YYYY (e.g., I believe /01 would be interpreted as 1 CE) would be part of the implementation as DC only accepts Y{1,4}, M?M, D?D.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.