gpt4 book ai didi

c# - 将字符串转换为 DateTime 格式

转载 作者:太空宇宙 更新时间:2023-11-03 23:22:14 25 4
gpt4 key购买 nike

我正在尝试使用以下方法将 09/01/2015 00:00:00 解析为 yyyy-MM-ddThh:mm:ssZ 格式:

DateTime.ParseExact("09/01/2015 00:00:00", "yyyy-MM-ddThh:mm:ssZ", (IFormatProvider)CultureInfo.InvariantCulture);

但我得到 String was not recognized as a valid DateTime

谁能告诉我为什么?我相信 09/01/2015 00:00:00 是有效的 DateTime 格式?

最佳答案

来自 DateTime.ParseExact

Converts the specified string representation of a date and time to its DateTime equivalent. The format of the string representation must match a specified format exactly or an exception is thrown.

在您的情况下,它们不是。

我假设您的 09 部分是天数,您可以改用 dd/MM/yyyy HH:mm:ss 格式。

var dt = DateTime.ParseExact("09/01/2015 00:00:00", 
"dd/MM/yyyy HH:mm:ss",
CultureInfo.InvariantCulture);

因为 CultureInfo 已经 implements IFormatProvider,您不需要显式转换它。

I don't understand this. So it means I first have to correct my string and secondly I can do a ParseExact(). I thought ParseExact could handle the given string...

ParseExact 不是一种可以解析您提供的任何 格式字符串的神奇方法。如果您的字符串和格式根据您使用的文化设置完全匹配,它只能处理。

关于c# - 将字符串转换为 DateTime 格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35039646/

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