Horje
remove special characters from string javascript Code Example
remove special characters from string javascript
var str = "Hello^# World/";
str.replace(/[^a-zA-Z ]/g, ""); // "Hello World"
remove a special character from string javascript
//You can do it specifying the characters you want to remove:
string = string.replace(/[&\/\\#,+()$~%.'":*?<>{}]/g, '');
//Alternatively, to change all characters except numbers and letters, try:
string = string.replace(/[^a-zA-Z0-9]/g, '');
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, '');
js remove special characters
var desired = stringToReplace.replace(/[^\w\s]/gi, '')
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, " "));
remove special characters from string javascript
kkkkkkkkkkkk




Javascript

Related
city regex pattern Code Example city regex pattern Code Example
JS Fetch API Post Request Code Example JS Fetch API Post Request Code Example
email regex javscript Code Example email regex javscript Code Example
jquery delete grand parent of clicked element Code Example jquery delete grand parent of clicked element Code Example
fetch json post Code Example fetch json post Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9