Answers for "how to replace a character in a string js"

7

replacing characters in string javascript

var myStr = 'this,is,a,test';
var newStr = myStr.replace(/,/g, '-');

console.log( newStr );  // "this-is-a-test"
Posted by: Guest on October-20-2020
64

javascript replace string

var str = "JavaScript replace method test";
var res = str.replace("test", "success");  
//res = Javscript replace method success
Posted by: Guest on July-10-2020
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

Code answers related to "how to replace a character in a string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language