84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
http://www.xxx.com/one/two/three/four
将链接中每个 / 后面的字符查找出来,放到一个数组里,如: ['one','two','three','four'] 链接长度不限制。正则该怎么写?
/
['one','two','three','four']
是当前页面url: window.location.pathname.substr(1).split('/')
window.location.pathname.substr(1).split('/')
不是当前页面url:url.replace(/http(s){0,1}://[^/]+//, '').split('/')
url.replace(/http(s){0,1}://[^/]+//, '').split('/')
window.location.pathname.split('/')
楼上的思路不错,把前面的host去掉, 剩下的用/进行分割,更简单一点
-------以下是答案
这个需要用到断言
const str = 'http://www.xxx.com/one/two/three/four'; const result = str.match(/(?/[\/])\w+/g).map((item) => { return item.substr(1);}); // 输出 // ["www", "one", "two", "three", "four"]
是当前页面url:
window.location.pathname.substr(1).split('/')
不是当前页面url:
url.replace(/http(s){0,1}://[^/]+//, '').split('/')
window.location.pathname.split('/')
楼上的思路不错,把前面的host去掉, 剩下的用/进行分割,更简单一点
-------以下是答案
这个需要用到断言