Skip to content

Instantly share code, notes, and snippets.

@urbansky
Created May 31, 2016 12:23
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 urbansky/e68bd4c65e6577d10e1441de1ce90649 to your computer and use it in GitHub Desktop.
Save urbansky/e68bd4c65e6577d10e1441de1ce90649 to your computer and use it in GitHub Desktop.
Remove all special characters so a string can be used as valid filename
// Replace all special characters with empty string
var filename = stringToFilter.replace(/[^\w\s\-\.]/gi, '')
// ^ Negation
// \w alpha numeric
// \s spaces
// /gi search global and case insensitive
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment