Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^2: Time Piece Error Parsing

by Anonymous Monk
on Mar 09, 2016 at 18:07 UTC ( [id://1157199]=note: print w/replies, xml ) Need Help??


in reply to Re: Time Piece Error Parsing
in thread Time Piece Error Parsing

Interesting, so this should work even if the month has two digits.:
$date = $t->strptime(sprintf("%02d",$t->mon).sprintf("%02d",$t->day_of +_month).$t->year, '%m%d%Y');

Replies are listed 'Best First'.
Re^3: Time Piece Error Parsing
by runrig (Abbot) on Apr 15, 2016 at 15:58 UTC
    Alternatively:
    $date = $t->strptime(sprintf("%02d%02d%04d",$t->mon,$t->day_of_month,$ +t->year), '%m%d%Y');

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1157199]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-25 07:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found