5

这个问题在其他语言/平台上有答案,但我在C#. 在这里,我正在寻找我们使用的 URL 部分,WHOIS因此我对子域、端口、模式等不感兴趣。

Example 1: http://s1.website.co.uk/folder/querystring?key=value => website.co.uk
Example 2: ftp://username:password@website.com => website.com

当 whois 中的所有者相同时,结果应该相同,因此 sub1.xyz.com 和 sub2.xyz.com 都属于谁拥有我需要从 URL 中提取的 xyz.com。

4

4 回答 4

5

我需要同样的,所以我写了一个类,你可以复制并粘贴到你的解决方案中。它使用 tld 的硬编码字符串数组。http://pastebin.com/raw.php?i=VY3DCNhp

Console.WriteLine(GetDomain.GetDomainFromUrl("http://www.beta.microsoft.com/path/page.htm"));

输出microsoft.com

Console.WriteLine(GetDomain.GetDomainFromUrl("http://www.beta.microsoft.co.uk/path/page.htm"));

输出microsoft.co.uk

于 2011-02-13T07:41:48.490 回答
3

正如@Pete 所说,这有点复杂,但我会试一试。

请注意,此应用程序必须包含已知 TLD 的完整列表。这些可以从http://publicsuffix.org/检索。留下从该站点提取列表作为读者练习。

class Program
{
    static void Main(string[] args)
    {
        var testCases = new[]
        {
            "www.domain.com.ac",
            "www.domain.ac",
            "domain.com.ac",
            "domain.ac",
            "localdomain",
            "localdomain.local"
        };

        foreach (string testCase in testCases)
        {
            Console.WriteLine("{0} => {1}", testCase, UriHelper.GetDomainFromUri(new Uri("http://" + testCase + "/")));
        }

        /* Produces the following results:

            www.domain.com.ac => domain.com.ac
            www.domain.ac => domain.ac
            domain.com.ac => domain.com.ac
            domain.ac => domain.ac
            localdomain => localdomain
            localdomain.local => localdomain.local
         */
    }
}

public static class UriHelper
{
    private static HashSet<string> _tlds;

    static UriHelper()
    {
        _tlds = new HashSet<string>
        {
            "com.ac",
            "edu.ac",
            "gov.ac",
            "net.ac",
            "mil.ac",
            "org.ac",
            "ac"

            // Complete this list from http://publicsuffix.org/.
        };
    }

    public static string GetDomainFromUri(Uri uri)
    {
        return GetDomainFromHostName(uri.Host);
    }

    public static string GetDomainFromHostName(string hostName)
    {
        string[] hostNameParts = hostName.Split('.');

        if (hostNameParts.Length == 1)
            return hostNameParts[0];

        int matchingParts = FindMatchingParts(hostNameParts, 1);

        return GetPartOfHostName(hostNameParts, hostNameParts.Length - matchingParts);
    }

    private static int FindMatchingParts(string[] hostNameParts, int offset)
    {
        if (offset == hostNameParts.Length)
            return hostNameParts.Length;

        string domain = GetPartOfHostName(hostNameParts, offset);

        if (_tlds.Contains(domain.ToLowerInvariant()))
            return (hostNameParts.Length - offset) + 1;

        return FindMatchingParts(hostNameParts, offset + 1);
    }

    private static string GetPartOfHostName(string[] hostNameParts, int offset)
    {
        var sb = new StringBuilder();

        for (int i = offset; i < hostNameParts.Length; i++)
        {
            if (sb.Length > 0)
                sb.Append('.');

            sb.Append(hostNameParts[i]);
        }

        string domain = sb.ToString();
        return domain;
    }
}
于 2010-11-08T12:05:46.217 回答
1

您可以获得的最接近的是System.Uri.Host属性,它将提取 sub1.xyz.com 部分。不幸的是,很难知道主机的“顶级”部分到底是什么(例如 sub1.foo.co.uk 与 sub1.xyz.com)

于 2010-11-08T02:07:25.507 回答
0

如果您需要域名,那么您可以在 .net 中使用 URi.hostadress

如果您需要内容中的 url,那么您需要使用正则表达式解析它们。

于 2010-11-09T12:42:07.923 回答