Skip to content

Instantly share code, notes, and snippets.

@iLTW1n
Last active May 11, 2020 23:00
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 iLTW1n/21e39148b98eeb059f5c9dbb92300096 to your computer and use it in GitHub Desktop.
Save iLTW1n/21e39148b98eeb059f5c9dbb92300096 to your computer and use it in GitHub Desktop.
const regex = /[0-9]/g;
const text = 'This is my test 123';
text.replace(regex, ''); // 'This is my test '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment