在 C# 中将日期值转换为特定格式

发布于 2024-12-28 21:31:58 字数 195 浏览 1 评论 0原文

如何在 C# 中将任意日期格式转换为指定格式。

例如:

如果日期格式正在

14.11.2011 or 14/11/2011 

寻找转换函数,该函数可以转换为

yyyy-MM-dd format like 2011-11-14

How to convert any date format to a specified format in C#.

For example:

If Date Format is

14.11.2011 or 14/11/2011 

Looking for a conversion function which converts into

yyyy-MM-dd format like 2011-11-14

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

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

发布评论

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

评论(4

小猫一只 2025-01-04 21:31:58

简单易行:

var date = DateTime.Parse("14/11/2011"); // may need some Culture help here
Console.Write(date.ToString("yyyy-MM-dd"));

Easy peasy:

var date = DateTime.Parse("14/11/2011"); // may need some Culture help here
Console.Write(date.ToString("yyyy-MM-dd"));
浪漫人生路 2025-01-04 21:31:58

看一下 DateTime.ToString() 方法,自定义日期和时间格式字符串
标准日期和时间格式字符串

string customFormattedDateTimeString = DateTime.Now.ToString("yyyy-MM-dd");

Take a look at DateTime.ToString() method, Custom Date and Time Format Strings
and Standard Date and Time Format Strings

string customFormattedDateTimeString = DateTime.Now.ToString("yyyy-MM-dd");
叶落知秋 2025-01-04 21:31:58

您可以使用 DateTime.ParseDateTime.ParseExact方法将字符串解析为 DateTime 然后您可以使用 DateTime.ToString()< /a> 以新格式返回日期。对于标准格式,请查看此页面了解自定义日期格式

You can use the DateTime.Parse or DateTime.ParseExact methods to parse the string into a DateTime then you can use the DateTime.ToString() to return the date in the new format. For standard formatting check this page for custom date formats this

徒留西风 2025-01-04 21:31:58
string s = "May 29,2012";
DateTime dt;
DateTime.TryParse(s, out dt);

Response.Write(dt.ToString("MM/dd/yyyy"));
string s = "May 29,2012";
DateTime dt;
DateTime.TryParse(s, out dt);

Response.Write(dt.ToString("MM/dd/yyyy"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文