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

C#如何检测一个字符串是不是合法的URL

时间:2014-05-31 15:05:54      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   tar   http   a   



C#如何检测一个字符串是不是合法的URL

using System.Text.RegularExpressions;

   /// <summary>
        /// 检测串值是否为合法的网址格式
        /// </summary>
        /// <param name="strValue">要检测的String值</param>
        /// <returns>成功返回true 失败返回false</returns>
        public static bool CheckIsUrlFormat(string strValue)
        {
            return CheckIsFormat(@"(http://)?([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?"strValue);
        }

        /// <summary>
        /// 检测串值是否为合法的格式
        /// </summary>
        /// <param name="strRegex">正则表达式</param>
        /// <param name="strValue">要检测的String值</param>
        /// <returns>成功返回true 失败返回false</returns>
        public static bool CheckIsFormat(string strRegexstring strValue)
        {
            if (strValue != null && strValue.Trim() != "")
            {
                Regex re = new Regex(strRegex);
                if (re.IsMatch(strValue))
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            return false;
        }

        private void button1_Click(object senderEventArgs e)
        {
            if (CheckIsUrlFormat(textBox1.Text))
                MessageBox.Show("YES");
            else
                MessageBox.Show("No");
        }







附件列表

     

    C#如何检测一个字符串是不是合法的URL,布布扣,bubuko.com

    C#如何检测一个字符串是不是合法的URL

    标签:c   style   class   tar   http   a   

    原文地址:http://www.cnblogs.com/xe2011/p/3761969.html

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