javascript replace all string code example

Example 1: js string replaceall

// Chrome 85+
str.replaceAll(val, replace_val);
// Older browsers
str.replace(/val/g, replace_val);

Example 2: js replace all substrings

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

Example 3: 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 4: replace all occurrences of a string in javascript

const p = 'dog dog cat rat';

const regex = /dog/gi;

console.log(p.replace(regex, 'cow'));
//if pattern is regular expression all matches will be replaced
//output: "cow cow cat rat"

Example 5: str replace javascript all

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

Example 6: javascript replaceall

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