Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Last active December 28, 2015 20:31
Show Gist options
  • Select an option

  • Save azakordonets/cf402386078be414c80c to your computer and use it in GitHub Desktop.

Select an option

Save azakordonets/cf402386078be414c80c to your computer and use it in GitHub Desktop.
Removes spaces and special symbols from string in javascript
function removeSpecialCharacters(str) {
return str.replace(/[`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/\s]/gi, "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment