Date解析从日期转换而来的字符串

发布于 2024-12-11 20:14:07 字数 255 浏览 0 评论 0原文

我有一个日期时间值,我想将其显示为特定格式的字符串,目前我正在尝试此操作,

 lastUpdate = DateTime.ParseExact(tmpDt.ToString(), "d/M/YYYY",
                                  CultureInfo.InvariantCulture).ToString();

我收到的错误是 FormatException

I have a datetime value that I want displaying as a string in particular format, at the moment I am trying this

 lastUpdate = DateTime.ParseExact(tmpDt.ToString(), "d/M/YYYY",
                                  CultureInfo.InvariantCulture).ToString();

The error i'm getting is FormatException

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

无人接听 2024-12-18 20:14:07

其实

tmpDt.ToString("dd/MM/YYYY",CultureInfo.InvariantCulture)

也会做同样的事

Actually

tmpDt.ToString("dd/MM/YYYY",CultureInfo.InvariantCulture)

will do the same

残花月 2024-12-18 20:14:07

您会收到 FormatException,因为您使用 DateTime.ToString(),然后期望它位于“d/M/YYYY”中以进行解析。

如果您想以某种格式显示日期时间,您应该使用 DateTime.ToString() 的重载。

查看 MSDN 如何使用它。

You get the FormatException because you use a DateTime.ToString() and then expect it to be in " d/M/YYYY" for parsing it.

If you want to display your DateTime in a certain format you should use the overloads for DateTime.ToString().

Have a look at MSDN how to use this.

顾忌 2024-12-18 20:14:07

尝试:

myDateTimeObj.ToString("d/M/yyyy");

Try:

myDateTimeObj.ToString("d/M/yyyy");
逆光飞翔i 2024-12-18 20:14:07

为什么不直接使用带有格式说明符的 ToString()

DateTime time = DateTime.Now;              
string format = "MMM ddd d HH:mm yyyy";   
Console.WriteLine(time.ToString(format)); 

why not just use ToString() with a format specifier

DateTime time = DateTime.Now;              
string format = "MMM ddd d HH:mm yyyy";   
Console.WriteLine(time.ToString(format)); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文