首页 >后端开发 >C++ >如何在 C# 中解析 ISO 8601 日期?

如何在 C# 中解析 ISO 8601 日期?

Susan Sarandon
Susan Sarandon原创
2025-01-17 02:41:07207浏览

How to Parse ISO 8601 Dates in C#?

在 C# 中解析 ISO 8601 日期

问题:

如何将 ISO 8601 格式的日期字符串在 C# 中转换为 .NET 的 DateTime 对象?

例如,给定字符串 "2010-08-20T15:00:00Z",如何将其解析为 DateTime 对象?

解答:

可以使用 DateTime.Parse 方法,并结合合适的 DateTimeStyles 选项来完成转换:

<code class="language-csharp">DateTime d2 = DateTime.Parse("2010-08-20T15:00:00Z", null, System.Globalization.DateTimeStyles.RoundtripKind);</code>

RoundtripKind 样式选项确保正确解释字符串中的 "Z" 字符,将其识别为 UTC 时间。

完整的代码示例如下:

<code class="language-csharp">string iso8601String = "2010-08-20T15:00:00Z";
DateTime parsedDate = DateTime.Parse(iso8601String, null, System.Globalization.DateTimeStyles.RoundtripKind);
Console.WriteLine(parsedDate); // 输出:2010/8/20 15:00:00</code>

以上是如何在 C# 中解析 ISO 8601 日期?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn