正则验证URL合法性

 /// 
    /// 检测串值是否为合法的网址格式
    /// 
    /// 要检测的String值
    /// 成功返回true 失败返回false
    public static bool CheckIsUrlFormat(string strValue)
    {
        return CheckIsFormat(@"(http://)?([\w-]+\.)+[\w-]+(/[\w- ./?%&=]*)?", strValue);
    }
    /// 
    /// 检测串值是否为合法的格式
    /// 
    /// 正则表达式
    /// 要检测的String值
    /// 成功返回true 失败返回false
    public static bool CheckIsFormat(string strRegex, string strValue)
    {
        if (strValue != null && strValue.Trim() != "")
        {
            Regex re = new Regex(strRegex);
            if (re.IsMatch(strValue))
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        return false;
    }

你可能感兴趣的:(正则验证URL合法性)