replace with javascript code example

Example 1: javascript replace string

var str = "JavaScript replace method test";
var res = str.replace("test", "success");  
//res = Javscript replace method success

Example 2: javascript replace

var res = str.replace("find", "replace");

Example 3: how to use the replace method in javascript

let string = 'soandso, my name is soandso';

let replaced = string.replace(/soandso/gi, 'Dylan');

console.log(replaced); //Dylan, my name is Dylan

Example 4: string replace javascript

let re = /apples/gi; 
let str = "Apples are round, and apples are juicy.";
let newstr = str.replace(re, "oranges"); 
console.log(newstr)

output:

"oranges are round, and oranges are juicy."

Example 5: replace javascript

let randomtext = "Random text yo!"
let textRegex = /yo!/;
randomtext.replace(textRegex, "is here.");
console.log(randomtext.replace(textRegex, "is here."));
// Returns Random text is here.

Example 6: replace in string javascript

const p = 'hello world ! hello everyone ! ';

const regex = /hello/gi;

console.log(p.replace(regex, 'good morning'));
// expected output: "good morning world ! good morning everyone !"

console.log(p.replace('hello', 'good evening'));
// expected output: "good evening world ! hello everyone !"

Tags:

Php Example