Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

js千位分隔符分割数字 #10

Open
zuobaiquan opened this issue Nov 10, 2017 · 0 comments
Open

js千位分隔符分割数字 #10

zuobaiquan opened this issue Nov 10, 2017 · 0 comments

Comments

@zuobaiquan
Copy link
Owner

最快捷的方式是使用正则表达式
String(123456789).replace(/(\d)(?=(\d{3})+$)/g, "$1,");
结果是:123,456,789

比较愚蠢的办法是 对数据拆分 取模(初次遇到这种问题就这么干的!!!记一笔 )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant