在C#中将字符串转换为DateTime

时间:2010-03-05 10:34:42

标签: c# .net datetime

我想将此字符串转换为DateTime。

 Tue Aug 19 15:05:05 +0000 2008

我尝试过以下代码,但没有得到正确的值。

string strDate = "Tue Aug 19 15:05:05 +0000 2008";
DateTime date;
DateTime.Parse(strDate,out date);

2 个答案:

答案 0 :(得分:10)

DateTime date = DateTime.ParseExact(
    "Tue Aug 19 15:05:05 +0000 2008", 
    "ddd MMM dd HH:mm:ss zzz yyyy", 
    CultureInfo.InvariantCulture
);

为了更安全,请使用TryParseExact方法:

string str = "Tue Aug 19 15:05:05 +0000 2008";
string format = "ddd MMM dd HH:mm:ss zzz yyyy";
DateTime date;
if (DateTime.TryParseExact(str, format, CultureInfo.InvariantCulture, 
    DateTimeStyles.None, out date))
{
    Console.WriteLine(date.ToString());
}

答案 1 :(得分:6)