3

我正在尝试将日期时间字符串解析为DateTime对象,但是当我尝试这个时,我得到了这个 ParseError。我不明白发生了什么,有人可以帮助我吗?

日期时间字符串:09-January-2018 12:00:00

代码:let date = DateTime::parse_from_str(date.trim(), "%d-%B-%Y %T");

4

1 回答 1

9

这个:

extern crate chrono;
use chrono::DateTime;
use std::error::Error;

fn main() {
    println!("{:?}", DateTime::parse_from_str("09-January-2018 12:00:00", "%d-%B-%Y %T").unwrap_err().description());
}

https://play.rust-lang.org/?gist=9c0231ea189c589009a46308864dd9bc&version=stable

提供更多信息:

"input is not enough for unique date and time"

显然,DateTime需要您未在输入中提供的时区信息。使用NaiveDateTime应该工作:

extern crate chrono;
use chrono::NaiveDateTime;

fn main() {
    println!("{:?}", NaiveDateTime::parse_from_str("09-January-2018 12:00:00", "%d-%B-%Y %T"));
}

https://play.rust-lang.org/?gist=1acbae616c7f084a748e4f9cfaf1ef7f&version=stable

于 2018-01-07T11:44:36.993 回答