node js replace all in string code example

Example 1: 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");

Example 2: js replace all substrings

/// replace "abc" with "" (blank string)
str.replace(/abc/g, '');

Example 3: str replace javascript all

str.replace(/abc/g, '');

Example 4: javascript replaceall

//as of August 2020, not supported on older browsers
str.replaceAll("abc","def")

Example 5: replace each string by another string javascript

str.split(search).join(replacement)

Tags:

Java Example