在 C# 中将日期值转换为特定格式
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
简单易行:
Easy peasy:
看一下 DateTime.ToString() 方法,自定义日期和时间格式字符串
和标准日期和时间格式字符串
Take a look at DateTime.ToString() method, Custom Date and Time Format Strings
and Standard Date and Time Format Strings
您可以使用
DateTime.Parse
或DateTime.ParseExact
方法将字符串解析为 DateTime 然后您可以使用 DateTime.ToString()< /a> 以新格式返回日期。对于标准格式,请查看此页面了解自定义日期格式此You can use the
DateTime.Parse
orDateTime.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