One thing I found helpful with PM is a simple regex that matches both a MySQL timestamp (which is a digit string) and MySQL datetime fields (which contains punctuation):
my( $yr, $mo, $day, $hr, $min, $sec )=
$when =~ /(\d{4})(\d\d)(\d\d)(\d\d)(\d\d)(\d\d)/;
PerlMonks used to have separate code for dealing with timestamps vs. datetime fields.
Then you can construct nearly any date/time object you wish from the individual values.
Update: Gah! Serves me right for not looking at the code in question. The real/working code is more like:
my( $cc, $yr, $mo, $day, $hr, $min, $sec )=
$when =~ /(\d\d)/g;
$yr += $cc*100;
Sorry!
-
tye
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.