其他分享
首页 > 其他分享> > 如何月份英文缩写字符串转日期

如何月份英文缩写字符串转日期

作者:互联网

提出问题

如何月份英文缩写字符串转日期
例如:Thu Sep 8 19:45:29 2022

解决问题

CultureInfo enUS = new CultureInfo("en-US");
string pattern = "ddd MMM d HH:mm:ss yyyy";
DateTime parsedDate = default;
if (DateTime.TryParseExact("Thu Sep 8 19:45:29 2022", pattern, enUS, DateTimeStyles.None, out parsedDate))
    

参考

https://docs.microsoft.com/zh-cn/dotnet/standard/base-types/standard-date-and-time-format-strings#RFC1123
https://docs.microsoft.com/zh-cn/dotnet/api/system.datetime.tryparseexact?view=net-6.0

标签:缩写,zh,CultureInfo,pattern,45,DateTime,enUS,英文,字符串
来源: https://www.cnblogs.com/wuhailong/p/16701229.html