本文將介紹一段實(shí)例代碼,來(lái)講解利用正則表達(dá)式使C#判斷輸入日期格式是否正確的方法。希望這段代碼能對(duì)大家有所幫助。
通常我們?cè)谟肅#編寫系統(tǒng)程序或者Web開(kāi)發(fā)時(shí),都會(huì)遇到需要驗(yàn)證輸入的字符串是否是日期的情況,下面為大家介紹一種非常全面的用正則表達(dá)式驗(yàn)證日期的方法:
c 正則表達(dá)式日期代碼一:
/// summary>
/// 是否為日期型字符串
/// /summary>
/// param name="StrSource">日期字符串(2008-05-08)/param>
/// returns>/returns>
public static bool IsDate(string StrSource)
{
return Regex.IsMatch(StrSource, @"^((((1[6-9]|[2-9]\d)\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\d|3[01]))|(((1[6-9]|[2-9]\d)\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\d|30))|(((1[6-9]|[2-9]\d)\d{2})-0?2-(0?[1-9]|1\d|2[0-9]))|(((1[6-9]|[2-9]\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-))$");
}
/// summary>
/// 是否為時(shí)間型字符串
/// /summary>
/// param name="source">時(shí)間字符串(15:00:00)/param>
/// returns>/returns>
public static bool IsTime(string StrSource)
{
return Regex.IsMatch(StrSource, @"^((20|21|22|23|[0-1]?\d):[0-5]?\d:[0-5]?\d)$");
}
/// summary>
/// 是否為日期+時(shí)間型字符串
/// /summary>
/// param name="source">/param>
/// returns>/returns>
public static bool IsDateTime(string StrSource)
{
return Regex.IsMatch(StrSource, @"^(((((1[6-9]|[2-9]\d)\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\d|3[01]))|(((1[6-9]|[2-9]\d)\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\d|30))|(((1[6-9]|[2-9]\d)\d{2})-0?2-(0?[1-9]|1\d|2[0-8]))|(((1[6-9]|[2-9]\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-)) (20|21|22|23|[0-1]?\d):[0-5]?\d:[0-5]?\d)$ ");
}
c 正則表達(dá)式日期代碼二:
//是否是整數(shù)
public static bool IsInt(string StrSource)
{
return Regex.IsMatch(StrSource, @"^[0-9]*$");
}
public static bool IsDate(string strDate)
{
if (string.IsNullOrEmpty(strDate))
return false;
string s_reg = @"^(?ni:(?=\\d)((?'year'((1[6-9])|([2-9]\\d))\\d\\d)(?'sep'[/.-])(?'month'0?[1-9]|1[012])\\2
(?'day'((?!(\\2((0?[2469])|11)\\2))31)|(?!\\2(0?2)\\2)(29|30)|((?=((1[6-9]|[2-9]\\d)(0[48]|
[2468][048]|[13579][26])|(16|[2468][048]|[3579][26])00)\\2\\3\\2)29)|((0?[1-9])|(1\\d)|(2[0-
8])))(?:(?=\\x20\\d)\\x20|$))?((?time>((0?[1-9]|1[012])(:[0-5]?\\d){0,2}(\\x20[AP]M))|([01]?
\\d|2[0-3])(:[0-5]?\\d){1,2}))?)$";
Regex reg = new Regex(s_reg);
if (reg.IsMatch(strDate.ToLower()))
return true;
else
return false;
}
以上就是小編給大家介紹的C#正則表達(dá)式判斷輸入日期格式是否正確的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)c正則表達(dá)式日期判斷有所幫助。同時(shí)也非常感謝大家一直以來(lái)對(duì)腳本之家網(wǎng)站的支持。
您可能感興趣的文章:- c# DevExpress gridcontrol日期行的顯示格式設(shè)置
- C# string格式的日期時(shí)間字符串轉(zhuǎn)為DateTime類型的方法
- 深入理解C# DateTime日期格式化
- C#根據(jù)身份證號(hào)碼判斷出生日期和性別
- C#根據(jù)日期計(jì)算星期幾的實(shí)例代碼
- C#日期控件datetimepicker保存空值的三種方法
- C#實(shí)現(xiàn)將字符串轉(zhuǎn)換成日期格式的方法
- C#獲取日期的星期名稱實(shí)例代碼