码迷,mamicode.com
首页 > 其他好文 > 详细

常用正则表达式集锦

时间:2014-09-23 15:26:14      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   ar   div   sp   art   

1. IsMatch()

bubuko.com,布布扣
 //IP正则表达式
        private static Regex _ipregex = new Regex(@"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$");

  /// <summary>
        /// 是否为IP
        /// </summary>
        public static bool IsIP(string s)
        {
            return _ipregex.IsMatch(s);
        }
View Code

2. 

常用正则表达式集锦

标签:style   blog   http   color   os   ar   div   sp   art   

原文地址:http://www.cnblogs.com/lihongchen/p/3987971.html

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