我怎么能转换成字符串日期时间在.NET?转换成、字符串、日期、时间

由网友(强颜欢笑)分享简介:我如何可以转换的日期,如2009年6月17日,下午3时37分ET成的DateTime 变量使用C#?我已经试过 DateTime.ParseExact ,但我还没有想出使用正确的格式。解决方案 //字符串日期时间字符串MyString中;MyString的=1999-09-01 21:34 PM;// MyStr...

我如何可以转换的日期,如2009年6月17日,下午3时37分ET成的DateTime 变量使用C#?

我已经试过 DateTime.ParseExact ,但我还没有想出使用正确的格式。

解决方案

  //字符串日期时间
 字符串MyString中;
 MyString的=1999-09-01 21:34 PM;
 // MyString的=1999-09-01下午21时34分; //取决于您的区域设置

 日期时间MyDateTime;
 MyDateTime =新的日期时间();
 MyDateTime = DateTime.ParseExact(MyString的,YYYY-MM-DD HH:MM TT,NULL);
 

来源: HTTP://www.$c$cproject.com/ KB / CS / String2DateTime.aspx

修改,以适应您的日期格式为:

  //字符串日期时间
 字符串MyString中;
 MyString的=2009年6月17日,下午3时37分;

 日期时间MyDateTime;
 MyDateTime =新的日期时间();
 MyDateTime = DateTime.ParseExact(MyString的,MMM DD YYYY,HH:MM TT,NULL);
 

excel如何将字符串转换成时间

How can I convert dates like "Jun 17 2009, 03:37 pm ET" into a DateTime variable using C#?

I have tried DateTime.ParseExact but I haven't figured out the correct format to use.

解决方案

 // String to DateTime
 String MyString;
 MyString = "1999-09-01 21:34 PM";
 //MyString = "1999-09-01 21:34 p.m.";  //Depends on your regional settings

 DateTime MyDateTime;
 MyDateTime = new DateTime();
 MyDateTime = DateTime.ParseExact(MyString, "yyyy-MM-dd HH:mm tt", null);

Source: http://www.codeproject.com/KB/cs/String2DateTime.aspx

Modified to fit your date format:

 // String to DateTime
 String MyString;
 MyString = "Jun 17 2009, 03:37 pm";

 DateTime MyDateTime;
 MyDateTime = new DateTime();
 MyDateTime = DateTime.ParseExact(MyString, "MMM dd YYYY, HH:mm tt", null);

阅读全文

相关推荐

最新文章