Net Core教程

C# 字符串转日期格式

本文主要是介绍C# 字符串转日期格式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
string createDate="02 23 2022  5:19PM"; 
DateTime resultCreateDate;
//判断字符串是否是日期格式
 if (DateTime.TryParse(createDate.ToString(), out resultCreateDate))
 {
      //是,输出resultCreateDate  输出:2022/02/23 05:19
 }
else 
{
//否
}
string createDate="02 23 2022  5:19PM"; 
System.Globalization.DateTimeFormatInfo a= new System.Globalization.CultureInfo("en-US", false).DateTimeFormat;
a.ShortTimePattern = "t";

DateTime resultCreateDate= DateTime.Parse(createDate", a);
//输出:2022/02/23 05:19

 

这篇关于C# 字符串转日期格式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!