function getCaption (obj) {
const index = obj.lastIndexOf("cccd")
const res = obj.substring(index, obj.length)
return res
}
let str = 'aaabbbcccdddeeefff'
let res = getCaption(str)
console.log(res)
运行效果:
function getCaption (obj) {
const index = obj.lastIndexOf("cccd")
const res = obj.substring(index, obj.length)
return res
}
let str = 'aaabbbcccdddeeefff'
let res = getCaption(str)
console.log(res)
运行效果: