Answers for "remove string in the specific position and return new one in js"

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

Code answers related to "remove string in the specific position and return new one in js"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language