正则验证URL合法性

 /// <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 strRegex, string strValue)
    {
        if (strValue != null && strValue.Trim() != "")
        {
            Regex re = new Regex(strRegex);
            if (re.IsMatch(strValue))
            {
                return true;
            }
            else
            {
                return false;
            }
        }
        return false;
    }

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。