We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
最快捷的方式是使用正则表达式 String(123456789).replace(/(\d)(?=(\d{3})+$)/g, "$1,"); 结果是:123,456,789
比较愚蠢的办法是 对数据拆分 取模(初次遇到这种问题就这么干的!!!记一笔 )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
最快捷的方式是使用正则表达式
String(123456789).replace(/(\d)(?=(\d{3})+$)/g, "$1,");
结果是:123,456,789
比较愚蠢的办法是 对数据拆分 取模(初次遇到这种问题就这么干的!!!记一笔 )
The text was updated successfully, but these errors were encountered: