How to replace all occurrences of a words in a string in JavaScript

2 Answers

0 votes
let str = "The worlds most reliable Programming Q&A worlds";
 
str = str.replace(/worlds/g, "cosmos"); // /g -  global match
  
console.log(str);
 



/*
run:
 
"The cosmos most reliable Programming Q&A cosmos"
  
*/

 



answered Jun 10, 2015 by avibootz
edited Jun 1, 2022 by avibootz
0 votes
let str = "The WOrlds most reliable Programming Q&A WORLDS";
 
str = str.replace(/worlds/gi, "cosmos"); // /g -  global match , /i -  case-insensitive 
  
console.log(str);
 



/*
run:
 
"The cosmos most reliable Programming Q&A cosmos"
  
*/
  

 



answered Jun 10, 2015 by avibootz
edited Jun 1, 2022 by avibootz
...