With the particular format you're asking about, a regex shouldn't be that difficult, especially when you're not concerned with validity: something like this:

m!^[0-9]{4}[/\-.][0-9]{1,2}[/\-.][0-9]{1,2}$#!
which, if my regex memory works, will match a string which starts three groups of digits separated by slashes, hyphens, or periods, where the first group has 4 digits, and the second and third groups have 1 or 2 digits. I would do some minimal validation (to throw out clearly invalid values for month or day, such as 93), so it's more likely I'd use a regex like this one:
m/^\d{4}[\/\-.](1[0-2])|0?[1-9])[\/\-.]([012]?[0-9]|3[01]$/<p>
Which, if my regex juju is still working, will match a string comprising three groups, separated by slashes, hyphens, or periods, where the first group has 4 digits, the second a number in the range 1 through 12, and the third a number in the range 0 (oops!) through 31. I know there is no day of the month numbered 0, but I'll leave that as an exercise for the reader.

Another way to do this is to use split, breaking the string on the required separator, something like this:

($year, $month, $day) = split(/[.\-\/]/, $date, 3);

emc

Information about American English usage here and here. Floating point issues? Please read this before posting.


In reply to Re: Regexp for date by swampyankee
in thread Regexp for date 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":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.