我已经为解析ascii文件做了一个通用的解析器.
当我想解析日期时,我使用DateTime对象中的ParseExact函数来解析,但是我遇到了年份的问题.
当我想解析日期时,我使用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.