Last active
April 28, 2021 10:54
-
-
Save martinratinaud/e6e3f9c9f048d0405a2eeff196432d1d to your computer and use it in GitHub Desktop.
Keep only text and numeric characters in any alphabet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// \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