How to replace multiple character at a specific index in a string with TypeScript

1 Answer

0 votes
let str = "typescript php c++";

const index = 2;
const replacement = 'QPO';

str = str.substring(0, index) + replacement + str.substring(index + replacement.length);
  
console.log(str); 
 
 
 
  
  
/*
run:
  
"tyQPOcript php c++" 
 
*/

 



answered Jul 4, 2022 by avibootz
...