Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: How do I find difference between two timestamps?

by tall_man (Parson)
on Nov 16, 2004 at 18:22 UTC ( [id://408195]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How do I find difference between two timestamps?
in thread How do I find difference between two timestamps?

That may be so according to the most recent 8601 standard, but as far as Perl is concerned it is not. For example, Date::Manip claims to be able to handle ISO 8601 date formats, but the following will fail:
use strict; use Date::Manip; my $string = "2004-11-15T18:59:52.863Z"; my $date = ParseDate($string); print $date,"\n";

Replies are listed 'Best First'.
Re^4: How do I find difference between two timestamps?
by tomhukins (Curate) on Nov 16, 2004 at 23:04 UTC
    Date::Manip claims to be able to handle ISO 8601 date formats, but the following will fail

    It seems Date::Manip only understands a subset of valid ISO 8601 formats. Again, I suggest the DateTime collection of modules that have been mentioned elsewhere in this discussion.

    The DateTime modules do a good job of dealing with dates, times, intervals, timezone differences, daylight savings time, and other things that make this type of programming more difficult than first appearances suggest.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-26 06:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found