Skip to content

Instantly share code, notes, and snippets.

@kanakiyajay
Created August 21, 2014 11:23
Show Gist options
  • Save kanakiyajay/abbefdb4634a70ec40aa to your computer and use it in GitHub Desktop.
Save kanakiyajay/abbefdb4634a70ec40aa to your computer and use it in GitHub Desktop.
Simple function to remove special characters from a string.
function removeSpecialChars (str) {
return str.replace(/[^a-zA-Z ]/g, "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment