Answers for "nodejs replace character in string"

31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
6

js replace characters in a string

var str = "Original string!";
var str = str.replace("Original", "New");
Posted by: Guest on September-29-2020
3

javascript regex replace

const search = 'duck'
const replaceWith = 'goose';

const result = 'duck duck go'.replaceAll(search, replaceWith);

result; // => 'goose goose go'
Posted by: Guest on June-23-2020
6

str replace javascript all

str.replace(/abc/g, '');
Posted by: Guest on May-16-2020

Code answers related to "nodejs replace character in string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language