Answers for "remove all symbols from string javascript"

4

remove special characters from string javascript

var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
Posted by: Guest on June-06-2020
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
0

remove all sign that is not a-b in string js

const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, " "));
Posted by: Guest on December-27-2020

Code answers related to "remove all symbols from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language