Answers for "javascript replace / with -"

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
6

replace all javascript

str.split(search).join(replacement);
Posted by: Guest on May-01-2020
0

replace javascript

// Replace with no modifiers
let newText = startText.replace("yes", "no")
console.log(newText)  // "Yes, I said no, it is, yes."

// Replace with 'g'-global modifier
newText = startText.replace(/yes/g, "no")
console.log(newText)  // "Yes, I said no, it is, no."

// Replace with modifiers 'g'-global and 'i'-case insensitive
newText = startText.replace(/yes/gi, "no")
console.log(newText)  // "no, I said no, it is, no."
Posted by: Guest on December-30-2020

Code answers related to "javascript replace / with -"

Code answers related to "Javascript"

Browse Popular Code Answers by Language