Answers for "remove special character from string javascript w3scholl"

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
0

remove charachter from string

StringBuilder sb = new StringBuilder(inputString);
Posted by: Guest on February-02-2021

Code answers related to "remove special character from string javascript w3scholl"

Code answers related to "Javascript"

Browse Popular Code Answers by Language