C#判断输入日期格式是否正确

    /// 
    /// 是否为日期型字符串
    /// 
    /// 日期字符串(2008-05-08)
    /// 
    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-))$");
    }
    /// 
    /// 是否为时间型字符串
    /// 
    /// 时间字符串(15:00:00)
    /// 
    public static bool IsTime(string StrSource)
    {
        return Regex.IsMatch(StrSource, @"^((20|21|22|23|[0-1]?\d):[0-5]?\d:[0-5]?\d)$");
    }

    /// 
    /// 是否为日期+时间型字符串
    /// 
    /// 
    /// 
    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)$ ");
    }
 //是否是整数
public static bool IsInt(string StrSource)
{
    return Regex.IsMatch(StrSource, @"^[0-9]*$");
}  
//判断是否为日期格式
 public bool IsDate(string strDate)
{
    try
   {
    DateTime.Parse(strDate);
    return true;
   }
    catch
  {
      return false;
  }
}

yyyy/MM/dd格式
^(?\d{2,4})/(?\d{1,2})/(?\d{1,2})$

yyyy-MM-dd格式

^(?\d{2,4})-(?\d{1,2})-(?\d{1,2})$

yyyy.MM.dd 格式

^(?\d{2,4})..$

yyyy年MM月dd日格式 (可以不包含年和日)

^((?\d{2,4})年)?(?\d{1,2})月((?\d{1,2})日)?$

yyyy年MM月dd日格式(MM、dd为中文数字)

^((?\d{2,4})年)?(正|一|二|三|四|五|六|七|八|九|十|十一|十二)月((一|二|三|四|五|六|七|八|九|十){1,3}日)?$

yyyy年MM月dd日格式(年月日均为中文数字)

^(零|〇|一|二|三|四|五|六|七|八|九|十){2,4}年((正|一|二|三|四|五|六|七|八|九|十|十一|十二)月((一|二|三|四|五|六|七|八|九|十){1,3}(日)?)?)?$

你可能感兴趣的:(C#)