在javascript中用逗号格式化数字变量的最佳方法是什么

发布于 2024-12-09 09:55:25 字数 226 浏览 0 评论 0原文

我遇到了格式化 javascript 数字的问题。 javascript 中的 csharp 代码相当于什么:

 var cSharpNumber = 10000;
 string formattedNumber = cSharpNumber.ToString("#,###");  //this should show 10,000

如果可能的话,我想避免引入其他插件

I am running into an issue formatting a javascript number. What is the equivalent of this csharp code in javascript:

 var cSharpNumber = 10000;
 string formattedNumber = cSharpNumber.ToString("#,###");  //this should show 10,000

I would like to avoid having to bring in other plugins if possible

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

亢潮 2024-12-16 09:55:25

JavaScript 没有提供任何现成的方法来执行此操作,因此您必须使用一些自定义代码。快速谷歌搜索发现了这个,这对我来说看起来不错:

http://www.mredkj.com /javascript/nfbasic.html

JavaScript doesn't provide any way to do this out of the box, so you will have to use some custom code. A quick google search turned up this, which looks good to me:

http://www.mredkj.com/javascript/nfbasic.html

墨小沫ゞ 2024-12-16 09:55:25

我发现该代码很长一段时间以来一直工作正常: http://phpjs.org/functions/ number_format:481

I found that code a long time and it has been working fine since : http://phpjs.org/functions/number_format:481

[旋木] 2024-12-16 09:55:25
function addCommas(n){
    var rx=  /(\d+)(\d{3})/;
    return String(n).replace(/^\d+/, function(w){
        while(rx.test(w)){
            w= w.replace(rx, '$1,$2');
        }
        return w;
    });
}


returned values:
235=235
999.99=999.99
'1200000'=1,200,000
12345=12,345
10652.23=10,652.23
function addCommas(n){
    var rx=  /(\d+)(\d{3})/;
    return String(n).replace(/^\d+/, function(w){
        while(rx.test(w)){
            w= w.replace(rx, '$1,$2');
        }
        return w;
    });
}


returned values:
235=235
999.99=999.99
'1200000'=1,200,000
12345=12,345
10652.23=10,652.23
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文