Skip to content

Instantly share code, notes, and snippets.

@sshmyg
Created September 18, 2015 06:04
Show Gist options
  • Save sshmyg/f68d230ed3fd82e11e63 to your computer and use it in GitHub Desktop.
Save sshmyg/f68d230ed3fd82e11e63 to your computer and use it in GitHub Desktop.
Format number like 1 000 000, with space
var str = '234456234';
str.replace(/(\d)(?=(\d\d\d)+([^\d]|$))/g, '$1 ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment