Skip to content

Instantly share code, notes, and snippets.

@dhanushkac
Created November 9, 2020 17:17
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 dhanushkac/911ea231f1796676bd7fbeadcaddb0a8 to your computer and use it in GitHub Desktop.
Save dhanushkac/911ea231f1796676bd7fbeadcaddb0a8 to your computer and use it in GitHub Desktop.
Decimal pointer separator regex
'10000'.replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,');
// 10,000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment