Skip to content

Instantly share code, notes, and snippets.

@martinratinaud
Last active April 28, 2021 10:54
Show Gist options
  • Save martinratinaud/e6e3f9c9f048d0405a2eeff196432d1d to your computer and use it in GitHub Desktop.
Save martinratinaud/e6e3f9c9f048d0405a2eeff196432d1d to your computer and use it in GitHub Desktop.
Keep only text and numeric characters in any alphabet
// \p{L} for any text character
// \d for any digit
// /u for unicode
const replaced = url.replace(/[^\p{L}\d]/gimu, '')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment