DateTime::Format::ISO8601 - Parses ISO8601 formats
| Use Case | Command | Description |
|---|---|---|
| Parse ISO8601 datetime | DateTime::Format::ISO8601->parse_datetime($str) | Parse a full datetime string (date + time) |
| Parse ISO8601 time-only | DateTime::Format::ISO8601->parse_time($str) | Parse a time-only string (e.g., 113231) |
| Format DateTime to ISO8601 | DateTime::Format::ISO8601->format_datetime($dt) | Format a DateTime object with nanoseconds and correct timezone offset |
| Create parser object | DateTime::Format::ISO8601->new(%options) | Create a parser with optional base_datetime, cut_off_year, legacy_year |
| Set base datetime | $parser->set_base_datetime($dt) | Fill missing date/time fields from this DateTime object |
| Set cut-off year | $parser->set_cut_off_year($int) | Interpret 2-digit years: < cut-off → 20xx, ≥ cut-off → 19xx |
| Set legacy year mode | $parser->set_legacy_year($bool) | If true, use cut-off; if false, always current century |
| Default cut-off year (class) | DateTime::Format::ISO8601->DefaultCutOffYear($int) | Set or get default cut-off year for all class method calls |
| Default legacy year (class) | DateTime::Format::ISO8601->DefaultLegacyYear($bool) | Set or get default legacy year behavior for all class method calls |
version 0.16
use DateTime::Format::ISO8601;
my $datetime_str = '2020-07-25T11:32:31';
my $dt = DateTime::Format::ISO8601->parse_datetime($datetime_str);
say $dt;
# This format is ambiguous and could be either a date or time, so use the
# parse_time method.
my $time_str = '113231';
$dt = DateTime::Format::ISO8601->parse_time($time_str);
say $dt;
# or
my $iso8601 = DateTime::Format::ISO8601->new;
$dt = $iso8601->parse_datetime($datetime_str);
say $dt;
$dt = $iso8601->parse_time($time_str);
say $dt;
say DateTime::Format::ISO8601->format_datetime($dt);
Parses almost all ISO8601 date and time formats. ISO8601 time-intervals will be supported in a later release.
This class provides the following methods:
DateTime::Format::ISO8601->new( ... )
Accepts an optional hash.
my $iso8601 = DateTime::Format::ISO8601->new(
base_datetime => $dt,
cut_off_year => 42,
legacy_year => 1,
);
DateTime object that will be used to fill in missing information from incomplete date/time formats. This key is optional.DefaultCutOffYear.base_datetime is set) or if cut_off_year should be used to place the year in either 20xx or 19xx.cut_off_year is used. If this is false, then the year is always interpreted as being in the current century.DefaultLegacyYear.$iso8601->clone
Returns a replica of the given object.
$iso8601->base_datetime — Returns a DateTime object if a base_datetime has been set.$iso8601->set_base_datetime( object => $object ) — Accepts a DateTime object that will be used to fill in missing information.$iso8601->cut_off_year — Returns an integer representing the cut-off point.$iso8601->set_cut_off_year($int) — Accepts an integer. 2-digit years < legacy_year → 20xx, ≥ legacy_year → 19xx.$iso8601->legacy_year — Returns a boolean value indicating the 2-digit year handling behavior.$iso8601->set_legacy_year($bool) — Accepts a boolean controlling if a 2-digit year is interpreted as current century or uses cut-off.DateTime::Format::ISO8601->DefaultCutOffYear($int) — Accepts an integer representing the cut-off point for 2-digit years when calling parse_* as class methods and the default value for cut_off_year when creating objects. If called with no parameters, returns the default value.DateTime::Format::ISO8601->DefaultLegacyYear($bool) — Accepts a boolean controlling legacy year behavior when calling parse_* as class methods and the default value for legacy_year when creating objects. If called with no parameters, returns the default value.These methods may be called as either class or object methods.
This may be called as either class or object method.
format_datetime($dt) — Formats the datetime in an ISO8601-compatible format. This differs from iso8601 in DateTime by including nanoseconds/milliseconds and the correct timezone offset.There are 6 strings that can match against date only or time only formats. The parse_datetime method will attempt to match these ambiguous strings against date only formats. If you want to match against the time only formats use the parse_time method.
base_datetime object.The supported formats are listed by the section of ISO 8601:2000(E) in which they appear.
YYYYMMDD, YYYY-MM-DDYYYY-MM, YYYY, YYYYMMDD, YY-MM-DD, -YYMM, -YY-MM, -YY, --MMDD, --MM-DD, --MM, ---DD+[YY]YYYYMMDD, +[YY]YYYY-MM-DD, +[YY]YYYY-MM, +[YY]YYYY, +[YY]YYYYYYDDD, YYYY-DDDYYDDD, YY-DDD, -DDD+[YY]YYYYDDD, +[YY]YYYY-DDDYYYYWwwD, YYYY-Www-DYYYYWww, YYYY-Www, YYWwwD, YY-Www-D, YYWww, YY-Www, -YWwwD, -Y-Www-D, -YWww, -Y-Www, -WwwD, -Www-D, -Www, -W-D+[YY]YYYYWwwD, +[YY]YYYY-Www-D, +[YY]YYYYWww, +[YY]YYYY-Wwwhh:mm:sshh:mmhhmmss,ss, hh:mm:ss,ss, hhmm,mm, hh:mm,mm, hh,hh-mm:ss, -mmss,s, -mm:ss,s, -mm,m, --ss,shhmmssZ, hh:mm:ssZ, hhmmZ, hh:mmZ, hhZ, hhmmss.ssZ, hh:mm:ss.ssZhhmmss[+-]hhmm, hh:mm:ss[+-]hh:mm, hhmmss[+-]hh, hh:mm:ss[+-]hh, hhmmss.ss[+-]hhmm, hh:mm:ss.ss[+-]hh:mmYYYYMMDDThhmmss, YYYY-MM-DDThh:mm:ss, YYYYMMDDThhmmssZ, YYYY-MM-DDThh:mm:ssZ, YYYYMMDDThhmmss[+-]hhmm, YYYY-MM-DDThh:mm:ss[+-]hh:mm, YYYYMMDDThhmmss[+-]hh, YYYY-MM-DDThh:mm:ss[+-]hhYYYYMMDDThhmmss.ss, YYYY-MM-DDThh:mm:ss.ss, YYYYMMDDThhmmss.ss[+-]hh, YYYY-MM-DDThh:mm:ss.ss[+-]hh, YYYYMMDDThhmmss.ss[+-]hhmm, YYYY-MM-DDThh:mm:ss.ss[+-]hh:mmYYYYMMDDThhmm, YYYY-MM-DDThh:mm, YYYYMMDDThhmmZ, YYYY-MM-DDThh:mmZ, YYYYDDDThhmm, YYYY-DDDThh:mm, YYYYDDDThhmmZ, YYYY-DDDThh:mmZ, YYYYWwwDThhmm[+-]hhmm, YYYY-Www-DThh:mm[+-]hhThese are not currently supported.
5.3.1.1 - 5.3.1.3 — Values can optionally be prefixed with 'T'.
hhmmsshhmm, hh-mmss, -mm, --ssISO8601:2000(E)
Data elements and interchange formats - information exchange - Representation of dates and times
Second edition 2000-12-15
ISO/TC 154 N 362
Iain 'Spoon' Truskett (SPOON) who wrote DateTime::Format::Builder. That has grown into The Vacuum Energy Powered "Swiss Army" Katana of date and time parsing. This module was inspired by and conceived in honor of Iain's work.
Tom Phoenix (PHOENIX) and PDX.pm for helping me solve the ISO week conversion bug. Not by fixing the code but motivating me to fix it so I could participate in a game of "Zendo".
Jonathan Leffler (JOHNL) for reporting a test bug.
Kelly McCauley for a patch to add 8 missing formats.
Alasdair Allan (AALLAN) for complaining about excessive test execution time.
Everyone at the DateTime "Asylum".
Bugs may be submitted at https://github.com/houseabsolute/DateTime-Format-ISO8601/issues.
I am also usually active on IRC as 'autarch' on irc://irc.perl.org.
The source code repository for DateTime-Format-ISO8601 can be found at https://github.com/houseabsolute/DateTime-Format-ISO8601.
This software is copyright (c) 2021 by Joshua Hoblitt.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
The full text of the license can be found in the LICENSE file included with this distribution.
Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-04 05:14 @216.73.216.156
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format