How to get the index of the Nth occurrence of a word in string in JavaScript

1 Answer

0 votes
function getIndex(s, tofind, index) {
  return s.split(tofind, index).join(tofind).length;
}

const s = "javascript c++ php javascript c# javascript python";

const tofind = "javascript";

console.log(getIndex(s, tofind, 3) 
)




/*

run:

33

*/

 



answered Oct 11, 2020 by avibootz
...