如果这是一个双重职位,请原谅我,但我找不到适合我的类似职位。
我有一个域名 ex。google.co.uk
(但这也可以是 google.com)。我需要在第一阶段拆分它,所以我得到一个这样的数组对象:["google", "co.uk"]
或["google", "com"]
在antoher post我发现了这个:'google.co.uk'.split(/.(.+)?/)[1];
但这似乎不起作用......
谁能帮我?提前致谢!
如果这是一个双重职位,请原谅我,但我找不到适合我的类似职位。
我有一个域名 ex。google.co.uk
(但这也可以是 google.com)。我需要在第一阶段拆分它,所以我得到一个这样的数组对象:["google", "co.uk"]
或["google", "com"]
在antoher post我发现了这个:'google.co.uk'.split(/.(.+)?/)[1];
但这似乎不起作用......
谁能帮我?提前致谢!
替换第一个 . 与永远不会出现在字符串中的其他内容(例如 |),然后拆分该字符。
由于 str.replace 仅替换默认情况下找到的字符的第一个实例,因此代码非常简单:
str = "google.co.uk";
str.replace(".", "|").split("|");
var text = 'google.co.uk';
//Returns the position of the first '.'
var index = text.indexOf('.');
//Grab the the start of the string up to the position of the '.'
var first = text.substring(0, index);
//Start from the '.' + 1(to exclude the '.') and go to the end of the string
var second = text.substring(index + 1);
alert(first); //google
alert(second); //co.uk
你们都让这有点复杂。一条简单的线是可能的:
var domain = 'google.co.uk';
alert(domain.split(/^(.+?)\./ig).splice(1));
您可以使用一些本机 javascript 函数...
string='google.com';
dot=string.indexOf('.',0);
name=string.substring(0,dot);
domain=string.substring(dot+1,string.length);
arr= new Array(name, domain);
alert(arr);
大声笑,已经看到更好的解决方案... :) 和类似的解决方案...