我在字符串中获取特定字符的索引但没有获取最后一个索引。我正在使用jquery函数。
例如: " ABCH /"通过方法索引我得到' /'的索引,但是对于" aa / aaaee /"我想要最后一个' /'。我使用了lasytindex,但它不起作用。
我的代码:
if (request.term.IndexOf("/") == (request.term.length - 1)) {
var term = request.term.slice(0, -1);
}
答案 0 :(得分:1)
答案 1 :(得分:1)
使用lastIndexOf()
方法。
request.term.lastIndexOf("/")
答案 2 :(得分:1)
以下行返回最后一个索引
var lastindex = str.length-1;