c#无法匹配Html特殊字符

时间:2016-07-11 08:51:51

标签: c# html mysql regex encode

我必须匹配2个url,第一个来自MySQL db,第二个来自Html页面。如果我将两者都比作字符串

var match = Regex.Match(href.Attributes["href"].Value, testString, RegexOptions.IgnoreCase);

match.Success = false.两个字符串都像this : myUrl/rollcontainer-weiß,但match.Success仍为false。

我尝试添加HttpUtility.HtmlEncode来检查两个字符串,我得到:第一个myUrl/rollcontainer-wei&#233,第二个myUrl/rollcontainer-wei&ß

在这种情况下如何拥有match.Success = true

1 个答案:

答案 0 :(得分:1)

尝试此功能,例如。

static void Main(string[] args)
{
    bool test = Test("http://myUrl.com/rollcontainer-Wei&ß", "http://myUrl.com/rollcontainer-wei&ß");

}

public static bool Test(string url1, string url2)
{
    Uri uri1 = new Uri(HttpUtility.HtmlDecode(url1)); 
    Uri uri2 = new Uri(HttpUtility.HtmlDecode(url2));

    var result = Uri.Compare(uri1, uri2,
        UriComponents.Host | UriComponents.PathAndQuery,
        UriFormat.Unescaped, StringComparison.OrdinalIgnoreCase);

    return result == 0;
}