Skip to content

Instantly share code, notes, and snippets.

@yhau1989
Last active November 17, 2022 15:31
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 yhau1989/a6d65055d2da13ca04076b060fb657af to your computer and use it in GitHub Desktop.
Save yhau1989/a6d65055d2da13ca04076b060fb657af to your computer and use it in GitHub Desktop.
Replace regex javascript
let text = 'asda12232353k';
const d = text.replace(/[^0-9, 'K']/g, "");
console.log(d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment