c# – DateTime字符串解析

前端之家收集整理的这篇文章主要介绍了c# – DateTime字符串解析前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经为解析ascii文件做了一个通用的解析器.
当我想解析日期时,我使用DateTime对象中的ParseExact函数来解析,但是我遇到了年份的问题.

要解析的文本是“090812”,其中parseExact字符串为“yyMMdd”.

我希望得到一个DateTime对象说“12 / 8-2009”,但我得到“12 / 8-1909”.
我知道,我可以通过以后解析它来制作一个丑陋的解决方案,从而修改年份..

有谁知道解决这个问题的聪明方法

提前致谢..

索伦

解决方法

理论上优雅的方法:更改您用于解析文本的DateTimeFormatInfo使用的Calendar的TwoDigitYearMax属性.例如:
CultureInfo current = CultureInfo.CurrentCulture;
DateTimeFormatInfo dtfi = (DateTimeFormatInfo) current.DateTimeFormat.Clone();
// I'm not *sure* whether this is necessary
dtfi.Calendar = (Calendar) dtfi.Calendar.Clone();
dtfi.Calendar.TwoDigitYearMax = 1910;

然后在调用DateTime.ParseExact时使用dtfi.

实际操作方法:在输入开头添加“20”,并用“yyyyMMdd”解析.

原文链接:https://www.f2er.com/csharp/94001.html

猜你在找的C#相关文章