Answers for "js replace all occurrences of string"

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

javascript replace all occurrences of string

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

replace all js

let a = 'a a a a aaaa aa a a';
a.replace(/aa/g, 'bb');
// => "a a a a bbbb bb a a"
Posted by: Guest on August-27-2020
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

replace all javascript

str.split(search).join(replacement);
Posted by: Guest on May-01-2020

Code answers related to "js replace all occurrences of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language