Answers for "how to replace all occurrences of a string in javascript"

26

replace all occurrences of a string in javascript

const p = 'The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?';

console.log(p.replaceAll('dog', 'monkey'));

// expected output: "The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?"
Posted by: Guest on July-25-2020
16

js replace all

function replaceAll(str, find, replace) {
    var escapedFind=find.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
    return str.replace(new RegExp(escapedFind, 'g'), replace);
}
//usage example
var sentence="How many shots did Bill take last night? That Bill is so crazy!";
var blameSusan=replaceAll(sentence,"Bill","Susan");
Posted by: Guest on July-22-2019
1

how to replace all occurrences of a string in javascript

// Update: In the latest versions of most popular browsers,
// you can use replaceAll as shown here:
let result = "1 abc 2 abc 3".replaceAll("abc", "xyz");
// `result` is "1 xyz 2 xyz 3"

/*
For Node and compatibility with older/non-current browsers:
Note: Don't use the following solution in performance critical code.
As an alternative to regular expressions for a simple literal string, 
you could use:
*/
str = "Test abc test test abc test...".split("abc").join("");

// ass a general pattern
// str.split(search).join(replacement)
Posted by: Guest on July-04-2021
1

how to replace all the string in javascript when the string is javascript variable

function name(str,replaceWhat,replaceTo){
    replaceWhat = replaceWhat.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
    var re = new RegExp(replaceWhat, 'g');
    return str.replace(re,replaceTo);
}
Posted by: Guest on September-23-2020
6

str replace javascript all

str.replace(/abc/g, '');
Posted by: Guest on May-16-2020
0

replace all occurrences of a string in javascript

str = str.replace(/abc/g, '');
Posted by: Guest on June-04-2021

Code answers related to "how to replace all occurrences of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language