I am looking for comparing two dates (dynamically received from a file ) in ISO Format — e.g. 2011-12-14T17:22:52Z — in Perl. How can I do it?
|
|
The great advantage of the ISO 8601 notation that you show is that it can be compared with string comparisons:
This assumes the values are all in Zulu time (Z is the time zone, aka UTC). If you have different time zones, then you need to normalize to a single time zone (UTC is a sensible choice) and then compare. Note carefully the term 'string comparison'. In Perl, the The string comparison operators (whose mnemonics might be based on the original Fortran comparison operators: |
|||||||||
|
|
If your dates are not necessarily in the same time zone (the question did not explicitly mention this), then you'd be better off using a dedicated date & time module than parsing and calculating date strings yourself. Here's an example using the DateTime and DateTime::Format::ISO8601 modules:
Note that comparison uses the numeric comparison between two objects, unlike the string comparison in the string-based answer. This works because |
|||
|
|