close

如何驗證字串日期 yyyyMMdd HHmmss 是否正確,

最好的辦法是用 DateTime.TryParseExact(),如果無法轉成你要的格式,就會是false

範例:

DateTime DTime = new DateTime();

//DateTime.TryParseExact("要驗證的日期字串", "驗證日期字串的格式", System.Globalization.CultureInfo.CurrentCulture, 0, out DTime);

DateTime.TryParseExact("20200414102802", "yyyyMMddHHmmss", System.Globalization.CultureInfo.CurrentCulture, 0, out DTime);

arrow
arrow
    創作者介紹
    創作者 阿駿 的頭像
    阿駿

    阿駿的部落格

    阿駿 發表在 痞客邦 留言(0) 人氣()