Created
September 18, 2015 06:04
-
-
Save sshmyg/f68d230ed3fd82e11e63 to your computer and use it in GitHub Desktop.
Format number like 1 000 000, with space
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
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