5 releases
0.1.4 | Dec 29, 2022 |
---|---|
0.1.3 | Oct 20, 2021 |
0.1.2 | Jul 17, 2020 |
0.1.1 | Jun 21, 2020 |
0.1.0 | May 12, 2020 |
#33 in #date-parser
13,343 downloads per month
Used in 35 crates
(2 directly)
13KB
262 lines
Diligent Date Parser
This is a Rust library to parse dates in unknown format. It diligently tries to apply known patterns and returns best found match.
lib.rs
:
This is a library to parse dates in unknown format. It diligently tries to apply known patterns and returns best found match.
Examples
use diligent_date_parser::parse_date;
use diligent_date_parser::chrono::prelude::*;
use diligent_date_parser::chrono::offset::FixedOffset;
assert_eq!(
parse_date("Mon, 2 Jan 2006 15:04:05 MST"),
Some(FixedOffset::west(7 * 3600).ymd(2006, 1, 2).and_hms(15, 4, 5)),
);
assert_eq!(
parse_date("Apr 21 2016"),
Some(Utc.ymd(2016, 4, 21).and_hms(0, 0, 0).into()),
);
assert_eq!(
parse_date("Sun Dec 24 13:19:25 +0200 2017"),
Some(Utc.ymd(2017, 12, 24).and_hms(11, 19, 25).into()),
);
assert_eq!(
parse_date("Yesterday"),
None,
);
Dependencies
~1MB
~18K SLoC