Skip to content

Instantly share code, notes, and snippets.

@iampeterbanjo
Created June 25, 2012 20:53
Show Gist options
  • Save iampeterbanjo/2991169 to your computer and use it in GitHub Desktop.
Save iampeterbanjo/2991169 to your computer and use it in GitHub Desktop.
String.removeSpecialCharacters
// remove special characters from strings
// @return {string}
String.prototype.removeSpecialCharacters = function (){
return this.replace(/\t|\?|\r/gi,'').replace(/\n|\_|\-/gi,' ');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment