Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
You should listen to the other monks who directed you to modules. But I wanted to take a stab at doing it in a regex. This code seems to work:
#!perl -w use strict; for my $y ( 1753 .. 9999 ) { for my $m ( 1 .. 12 ) { for my $d ( 1 .. 31 ) { my $date = sprintf "%04d/%02d/%02d", $y, $m, $d; if ( $date !~ m/^ ######################## # Year ([2-9]\d{3}|1[89]\d\d|17[6-9]\d|175[3-9]) \/ ##################### # Month (0[1-9]|1[0-2]) \/ ##################### # Day ( 0[1-9]|1\d|2[0-8]| # 01 - 28 (?<=(?:0[13578]|10|12)\/)(?:29|3[01])| # to 31 (?<=(?:0[469]|11)\/)(?:29|30)| # to 30 (?<=(?: (?:2[048]|3[26]|4[048]|5[26]|6[048]|7[26]|8[048]|9[26])00| \d\d(?:0[48]|1[26]|2[048]|3[26]|4[048]|5[26]|6[048]|7[26]|8[048]|9 +[26])\/02\/) )(?:29) # Leap year ) ######################## $/x ) { print "$date is invalid\n"; } # Else $1 == year, $2 == month, $3 == day }}}
Of course, different countries switched to the Gregorian calendar at different dates, so you really need a module to get it right. My favorite tome on the topic is "Calendrical Calculations" by Edward M Reingold and Nachum Dershowitz.

Update: I realized that I made a mistake listing leap-years. I've now fixed that, but it further demonstrates why a module is better.


In reply to Re: regular expression help by Adam
in thread regular expression help by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (2)
As of 2024-04-26 04:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found