码迷,mamicode.com
首页 > Web开发 > 详细

.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式

时间:2014-08-14 19:26:19      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:io   ar   div   .net   res   on   sp   text   

加上引用: using System.Text.RegularExpressions;

         /// <summary>

        /// 检查字符串是否是日期格式        /// </summary>
        /// <param name="s">2011-5-8 8:08:05</param>
        /// <returns></returns>
        public static string check(string s)
        {
            if (Regex.IsMatch(s,

"^((((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$"))

            {
                return s;
            }
            else
            {
                return "";
            }

        }

.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式,布布扣,bubuko.com

.net 判断日期格式yyyy-MM-dd hh:MM:ss的正则表达式

标签:io   ar   div   .net   res   on   sp   text   

原文地址:http://www.cnblogs.com/xuxin-1989/p/3912741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!