Answers for "How to replace words in a string js"

31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
0

how to replace word from string in javascript

var str = "Please locate where 'locate' occurs!";

str.replace("locate", "W3Schools"); //replace only replace first match from string
str.replace(/LOCATE/i, "W3Schools"); // i makes it case insensitive
str.replace(/LOCATE/g, "W3Schools"); // g replace all matches from string rather than replacing only first

document.write("<br>" + "replace:", res7);
document.write("<br>" + "replace with case insensitive:", res8);
document.write("<br>" + "replace all:", res9);
Posted by: Guest on June-04-2021

Code answers related to "How to replace words in a string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language