Skip to content

Instantly share code, notes, and snippets.

@Reelix
Created November 23, 2016 22:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reelix/652d80e5f5cab9cbb540f654d1e3fa37 to your computer and use it in GitHub Desktop.
Save Reelix/652d80e5f5cab9cbb540f654d1e3fa37 to your computer and use it in GitHub Desktop.
// Function
function stripChars(myWord)
{
myWord = myWord.replace(/[^\w\s]/gi, "");
alert(myWord);
}
// Button onclick event
stripChars('Hello!@!@%!@^! 5u*&%@p3r Wor(&(+)+l;d!!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment