Javascript - 获取字符串倒数第二个出现的索引?
Javascript - Get index of penultimate occurrence of a string?
我有这个字符串:
IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion/REP_NUMDocumentoIdent/
如何获取倒数第二个/
的索引?
IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion 索引->/ REP_NUMDocumentoIdent/
谢谢!
您可以通过将最后一个索引作为搜索值来获取倒数第二个索引。
var string = 'IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion/REP_NUMDocumentoIdent/',
index = string.lastIndexOf('/', string.lastIndexOf('/') - 1);
console.log(index);
console.log(string.slice(index));
我有这个字符串:
IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion/REP_NUMDocumentoIdent/
如何获取倒数第二个/
的索引?
IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion 索引->/ REP_NUMDocumentoIdent/
谢谢!
您可以通过将最后一个索引作为搜索值来获取倒数第二个索引。
var string = 'IESA1V1Ent/Cuerpo/Asiento:1/DatosRepercusion/REP_NUMDocumentoIdent/',
index = string.lastIndexOf('/', string.lastIndexOf('/') - 1);
console.log(index);
console.log(string.slice(index));