Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Time Piece Error Parsing

by runrig (Abbot)
on Mar 09, 2016 at 16:42 UTC ( [id://1157183]=note: print w/replies, xml ) Need Help??


in reply to Time Piece Error Parsing

Today is the 9th. If you're going to mash digits together without delimiters, the month AND the day of month each need to be 2 digits.

Replies are listed 'Best First'.
Re^2: Time Piece Error Parsing
by Anonymous Monk on Mar 09, 2016 at 18:07 UTC
    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');
      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://1157183]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-03-29 07:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found