#date-format #style #java

simpledateformat

SimpleDateFormat.java style like date format

6 releases

0.1.4 Sep 5, 2023
0.1.3 Oct 15, 2021
0.1.2 Jun 10, 2021
0.1.1 Jun 25, 2020
0.0.0 May 28, 2020

#527 in Parser implementations

Download history 333/week @ 2023-12-06 465/week @ 2023-12-13 108/week @ 2023-12-20 153/week @ 2023-12-27 218/week @ 2024-01-03 185/week @ 2024-01-10 258/week @ 2024-01-17 442/week @ 2024-01-24 546/week @ 2024-01-31 338/week @ 2024-02-07 367/week @ 2024-02-14 598/week @ 2024-02-21 289/week @ 2024-02-28 353/week @ 2024-03-06 1012/week @ 2024-03-13 739/week @ 2024-03-20

2,466 downloads per month
Used in 4 crates (2 directly)

MIT license

14KB
284 lines

simpledateformat

SimpleDateFormat.java style like date format

Usage:

let f = match fmt("yyyy-MM-dd HH:mm:ss z") {
    Ok(f) => f, Err(err) => {
        println!("Parse fmt error: {}", err);
        return;
    },
};
println!("Formated date: {}", f.format(&Local::now()));

Output:

Formated date: 2020-05-30 13:32:04 +08:00
format_human(Duration::from_secs(2 * 24 * 60 * 60 + 1));

Output:

2days 0hour 0min 1s

More tests:

https://git.hatter.ink/hatter/simpledateformat/src/branch/master/tests/lib_test.rs

Log

  • Jun 23, 2020 - v0.1.1
    • add simpledateformat::new_with_out_err(&str)
    • add impl TryFrom<&str> for SimpleDateFormat

Dependencies

~1MB
~19K SLoC