First of all, let me say that I certainly don't recommend that you do it this way :)

And yes, I did see your note about not wanting to use external modules....

...but, for the sake of the exercise, and just to prove that it can be done - here it is extending upon my earlier reply using Regexp::Common::time :)

#!/usr/bin/perl -w use strict; use Regexp::Common qw(time); while (<DATA>) { print if ($_ =~ $RE{time}{strftime}{-pat => '((%B|%b) %d|%d-%b|%m-%d)[\s\-,]+%Y'}); } __DATA__ Sep 29 2005 some stuff Jun 30, 2003 some more stuff December 15 2005 not a date December 31, 2004 06-Dec-2005 10-19-2005

Which gives:

Sep 29 2005 Jun 30, 2003 December 15 2005 December 31, 2004 06-Dec-2005 10-19-2005

Cheers,
Darren :)


In reply to Re: Multiple date format by McDarren
in thread Multiple date format by kulls

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.