如何使我的切片函数从某个单词开始,而不仅仅是一个整数。这可能吗?
使用 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)))