1

我有一个这样的字符串格式的网址:

str="http://code.google.com"

and some other like str="http://sub.google.co.in"      

我想从第一个字符串中提取 google.com,从第二个字符串中提取 google.co.in。

我所做的是:

var a, d, i, ind, j, till, total;

a = document.createElement('a');

a.href = "http://www.wv.sdf.sdf.sd.ds..google.co.in";

d = "";

if (a.host.substr(0, 4) === "www.") {
  d = a.host.replace("www.", "");
} else {
  d = a.host;
}

till = d.indexOf(".com");

total = 0;

for (i in d) {
  if (i === till) {
    break;
  }
  if (d[i] === ".") {
    total++;
  }
}

j = 1;

while (j < total) {
  ind = d.indexOf(".");
  d = d.substr(ind + 1, d.length);
  j++;
}

alert(d);

我的代码有效,但仅适用于“.com”,它不适用于“.co.in”,“co.uk”等其他人,直到我手动指定它们,谁能告诉我解决方案?我什至不介意我需要更改完整的代码,但它应该可以工作。谢谢

4

2 回答 2

2

当前唯一实用的解决方案(即使不是 100% 有效)是在您的代码中引用公共后缀列表,并根据需要与该列表同步。

没有一种算法可以查看域名找出哪个部分是“注册域名”以及哪些部分是子域。它甚至不能通过询问 DNS 本身来完成。

于 2012-05-16T08:50:01.747 回答
0

正则表达式对于此类问题非常强大。

https://regex101.com/r/rW4rD8/1

下面的代码应该适合这个目的。

var getSuffixOnly = function (url) {

    var normalized = url.toLowerCase();
    var noProtocol = normalized.replace(/.*?:\/\//g, "");
    var splittedURL = noProtocol.split(/\/|\?+/g);

    if (splittedURL.length > 1){
        noProtocol = splittedURL[0].toString().replace(/[&\/\\#,+()$~%'":*?<>{}£€^ ]/g, '');
    }

    var regex = /([^.]{2,}|[^.]{2,3}\.[^.]{2})$/g;
    var host = noProtocol.match(regex);


    return host.toString();

};

getSuffixOnly(window.location.host);
于 2016-02-17T15:03:54.187 回答