gpt4 book ai didi

c# - 将日期格式解析为 DateTime c#

转载 作者:行者123 更新时间:2023-11-30 22:09:50 26 4
gpt4 key购买 nike

如何解析这个字符串:

 "\"2014-01-02T23:00:00.000Z\"" to DateTime 

这没有用:

    DateTime? dateTimeFormat= string.IsNullOrEmpty(inputString) ?? (DateTime?)null : DateTime.Parse(inputString);

最佳答案

您需要将日期时间的确切格式指定为 DateTime.ParseExact方法:

string input = "\"2014-01-02T23:00:00.000Z\"";
var date = DateTime.ParseExact(input, "'\"'yyyy-MM-dd'T'HH:mm:ss.fff'Z\"'", null);

提供的格式说明:

'\"'           - match first "
yyyy-MM-dd - match 2014-01-02
'T' - match T
HH:mm:ss.fff - match 23:00:00.000
'Z\"' - match Z"

关于c# - 将日期格式解析为 DateTime c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21279746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com