Created
August 25, 2014 07:59
-
-
Save hashmaparraylist/85d74c4ad1055d6c8b17 to your computer and use it in GitHub Desktop.
逗号分隔数字
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
// 输出结果: 12,345 | |
String(12345).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