Answers for "js how to remove specific character form string"

4

javascript remove specific character from string

var newString = oldString.replaceAll("character/string goes here", "");

// Example
var oldString = "Hello World!";
var newString = oldString.replaceAll("o", "");
console.log(newString);
// Prints 'Hell Wrld!' to console.
Posted by: Guest on September-08-2020
7

javascript remove character from string

mystring.replace(/r/g, '')
Posted by: Guest on October-08-2020

Code answers related to "js how to remove specific character form string"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language