Answers for "javascript trim special characters"

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 special characters from string javascript

var desired = stringToReplace.replace(/[^\w\s]/gi, '')

//if you are using non english like arabic and other language
var outString = sourceString.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi, '');
Posted by: Guest on October-22-2021

Code answers related to "javascript trim special characters"

Code answers related to "Javascript"

Browse Popular Code Answers by Language