Answers for "remove some letters from a string javascript"

2

remove all characters from string javascript

const string = "hello world 123";

// remove all o's from the string
string.replace(/o/g, "") // "hell wrld 123"

// remove all letters from the string
string.replace(/[A-Za-z]/g, "") // "  123"

// remove all digits from the string
string.replace(/\d/g, "") // "hello world "
Posted by: Guest on May-30-2021
2

remove word from string javascript

var str = "delete-this"
str.replace('delete-','') // str = "this"
Posted by: Guest on July-18-2021

Code answers related to "remove some letters from a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language