Javascript切片方法,从某个单词开始



如何使我的切片函数从某个单词开始,而不仅仅是一个整数。这可能吗?

使用 indexOf ,您可以找到单词或字母的索引,并使用它来偏移作为begin参数 slice

// The string to analyze
const str = 'I am a super cool monkey man'
// The word to find
const word = 'cool'
// The result
console.log(str.slice(str.indexOf(word)))

相关内容

  • 没有找到相关文章

最新更新