如何在C#中将字符串日期转换为以下日期格式dd / MM / yyyy t:m:s

时间:2015-10-21 10:39:59

标签: c# datetime

我需要在C#中将日期格式从字符串转换为dd/MM/yyyy tt:mm:ss,例如转换

string = "2015-07-21T23:00:00.000Z" 

{21/07/2015 00:00:00}

1 个答案:

答案 0 :(得分:2)

我会使用DateTimeStyles.RoundtripKind枚举将其解析为DateTime,因为它是ISO 8601格式,然后使用Date property将其设置为午夜时间。

var dt = DateTime.Parse("2015-07-21T23:00:00.000Z", null, DateTimeStyles.RoundtripKind);
Console.WriteLine(dt.Date.ToString("dd'/'MM'/'yyyy HH:mm:ss")); // 21/07/2015 00:00:00

这里有 demonstration