获得倒数第二个斜杠的值

时间:2015-10-22 02:51:24

标签: javascript

var path = 'example.com/user/john/red'
path.substr(0, path.lastIndexOf("/"))

我得到了example.com/user/john

如何获得example.com/user/?表示lastSecondIndexOf,但没有这样的方法。

1 个答案:

答案 0 :(得分:3)

函数.lastIndexOffromIndex采用第二个参数,您可以在参数中使用斜杠的最后一个索引:

path.substr(0, path.lastIndexOf("/",path.lastIndexOf("/")-1));