const str = 'asdfeasdffegggggggegggwsdgeghh';
//第二个参数表示从第几位开始向前找,默认从最后以为向前找
console.log(str.lastIndexOf("e",str.lastIndexOf("e")-1));//18
获取倒数第二个指定字符的位置
版权归原作者所有,如有侵权请告知。达维营-前端网 » 获取倒数第二个指定字符的位置
const str = 'asdfeasdffegggggggegggwsdgeghh';
//第二个参数表示从第几位开始向前找,默认从最后以为向前找
console.log(str.lastIndexOf("e",str.lastIndexOf("e")-1));//18