我必须匹配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

最佳答案

例如,尝试使用此功能。

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;
}

10-08 11:43