基本上我需要一个JS Regexp来弹出URL的最后一部分。它的关键是,虽然它只是域名,如http://google.com,但我不希望有任何改变。
以下是示例。非常感谢任何帮助。
http://google.com -> http://google.com
http://google.com/ -> http://google.com
http://google.com/a -> http://google.com
http://google.com/a/ -> http://google.com/a
http://domain.com/subdir/ -> http://domain.com/subdir
http://domain.com/subfile.extension -> http://domain.com
http://domain.com/subfilewithnoextension -> http://domain.com
答案 0 :(得分:5)
我发现这个更简单,不使用正则表达式。
var removeLastPart = function(url) {
var lastSlashIndex = url.lastIndexOf("/");
if (lastSlashIndex > url.indexOf("/") + 1) { // if not in http://
return url.substr(0, lastSlashIndex); // cut it off
} else {
return url;
}
}
示例结果:
removeLastPart("http://google.com/") == "http://google.com"
removeLastPart("http://google.com") == "http://google.com"
removeLastPart("http://google.com/foo") == "http://google.com"
removeLastPart("http://google.com/foo/") == "http://google.com/foo"
removeLastPart("http://google.com/foo/bar") == "http://google.com/foo"
答案 1 :(得分:4)
我利用了DOM中的HTMLAnchorElement
。
function returnLastPathSegment(url) {
var a = document.createElement('a');
a.href = url;
if ( ! a.pathname) {
return url;
}
a.pathname = a.pathname.replace(/\/[^\/]+$/, '');
return a.href;
}