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

匹配URL

时间:2017-03-20 13:46:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:command   logs   正则表达   pre   show   success   span   blog   led   

使用一个不错的正则表达式来配对一个正确的url.

string reg = @"(?i)(http://|https://)?(\w+\.){1,3}(com(\.cn)?|cn|net|info|org|us|tk)\b"; 比较通用
            string reg = @"(?i)(http://|https://)?(\w+\.){1,3}(com(\.cn)?|cn|net|info|org|us|tk)\b";
            Regex r = new Regex(reg);

            textEditUrl.Text = textEditUrl.Text.Trim();
            Match match = r.Match(textEditUrl.Text);
            if (!match.Success)
            {
                CustomControls.MessageErrDlg dlg = new CustomControls.MessageErrDlg();
                dlg.Text = "Remote Command Failed";
                dlg.ShowDialog();

                textEditUrl.Text = "http://";
            }

 

匹配URL

标签:command   logs   正则表达   pre   show   success   span   blog   led   

原文地址:http://www.cnblogs.com/qq702368956/p/6587886.html

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