方案URL路徑提取使用正則表達式
我想從document.location解壓路徑字符串,不包括斜線。 因此,舉例來說,如果網址是:
http://stackoverflow.com/questions/ask
我會得到:
questions/ask
這應該是簡單的:
/* group everything after the leading slash */
var re = /\/(.+)/gi;
var matches = document.location.pathname.match(re);
console.log(matches[0]);
但是,如果我運行這個片段在Firebug控制檯,我仍然得到主導的斜線。 我已經測試了regexp,並且正則表達式引擎正確地提取了該組。
問題
如何正確地獲得第1組串?
正確,我的意思是領先的斜線。編輯的問題。 – 2014-12-04 11:29:19