https://www.example.com/uk/This-Part-I-Need-To-Get/F1ST2/sometext/
需要获得“ This-Part-I-Need-To-Get”,在单词开始处带有“-”符号和大写字母。
我要做的就是“ /([A-Z-])\ w + / g”,它返回
“此”,“部分”,“-I”,“需要”,“-至”,“-获取”,“ F1ST2”,但我不需要“ F1ST2”。
我该怎么办?
最佳答案
它可能取决于URL格式,但是在这一点上:
var url = 'https://www.example.com/uk/This-Part-I-Need-To-Get/F1ST2/sometext/';
console.log(url.split('/')[4])
关于javascript - 正则表达式获得链接的一部分,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44131535/