如何匹配主机名后面的所有内容。如果我有:
http://test.someweb.net/category/subcategory/?some=value
我想要匹配:
/category/subcategory/?some=value
答案 0 :(得分:2)
/http:\/\/[^/]+(.*)/
第一个匹配的组((.*)
)是您需要的组。
答案 1 :(得分:0)
url = "http://asjahsjahsjahs.ashags.asjahs/andbcb/c/d"
m = url.match(/https?:\/\/[^\/]*(\/.*)/);
m[1] ; //# => /andbcb/c/d