本文介绍了如何转换这是在CCYYMMDD格式使用C#提供给MM / DD / CCYY的日期?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能帮我转换这是在CCYYMMDD格式在C#MM / DD / CCYY格式给出的日期。

Can anyone help me to convert a date which is given in CCYYMMDD format to MM/DD/CCYY format in C#.

推荐答案

由CC假设你的意思世纪,你应该分析它,并重新格式化:

Assuming by "CC" you mean century, you should just parse it and reformat it:

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

这篇关于如何转换这是在CCYYMMDD格式使用C#提供给MM / DD / CCYY的日期?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 22:43