Horje
remove a special character 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 all sign that is not a-b in string js
const str = "abc's test#s";
console.log(str.replace(/[^a-zA-Z ]/g, " "));




Javascript

Related
Cannot find module 'caniuse-lite/dist/unpacker/agents' Code Example Cannot find module 'caniuse-lite/dist/unpacker/agents' Code Example
dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.66.dylib Referenced from: /usr/local/bin/node Reason: image not found Code Example dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.66.dylib Referenced from: /usr/local/bin/node Reason: image not found Code Example
how to remove dash from string in javascript Code Example how to remove dash from string in javascript Code Example
how to edit the visibiility of an element javscript Code Example how to edit the visibiility of an element javscript Code Example
display none js Code Example display none js Code Example

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