#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

#568 in Parser implementations

Download history 289/week @ 2024-01-02 151/week @ 2024-01-09 215/week @ 2024-01-16 453/week @ 2024-01-23 474/week @ 2024-01-30 430/week @ 2024-02-06 314/week @ 2024-02-13 633/week @ 2024-02-20 333/week @ 2024-02-27 318/week @ 2024-03-05 882/week @ 2024-03-12 734/week @ 2024-03-19 411/week @ 2024-03-26 817/week @ 2024-04-02 1130/week @ 2024-04-09 877/week @ 2024-04-16

3,358 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