如何使用C#将CCYYMMDD格式的日期转换为MM / DD / CCYY?

时间:2011-06-07 06:01:13

标签: c# date format

任何人都可以帮我将CCYYMMDD格式的日期转换为C#中的MM / DD / CCYY格式。

1 个答案:

答案 0 :(得分:6)

假设“CC”是指世纪,你应该解析它并重新格式化:

DateTime date = DateTime.ParseExact("yyyyMMdd", text,
                                    CultureInfo.InvariantCulture);
string newText = date.ToString("MM/dd/yyyy", CultureInfo.InvariantCulture);