replace all method code example
Example 1: javascript replace all
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'));
const regex = /Dog/ig;
console.log(p.replaceAll(regex, 'ferret'));
Example 2: 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);
}
var sentence="How many shots did Bill take last night? That Bill is so crazy!";
var blameSusan=replaceAll(sentence,"Bill","Susan");
Example 3: replaceall in java
public class ReplaceAllExample{
public static void main(String args[]){
String s1="Google is a very good website";
String replaceString=s1.replaceAll("a","e");
System.out.println(replaceString);
}}