首页 > web前端 > js教程 > 如何在 JavaScript 中格式化带有千位分隔符的数字?

如何在 JavaScript 中格式化带有千位分隔符的数字?

DDD
发布: 2024-12-31 19:07:10
原创
772 人浏览过

How to Format Numbers with Thousands Separators in JavaScript?

Formatting Numbers with Thousands Separators in JavaScript

Question:

如何使用 JavaScript 将整数格式化为带千位分隔符的数字?例如,将数字 1234567 显示为 "1,234,567"。

目前的实现:

function numberWithCommas(x) {
    x = x.toString();
    var pattern = /(-?\d+)(\d{3})/;
    while (pattern.test(x))
        x = x.replace(pattern, ",");
    return x;
}
登录后复制

更简单优雅的方法:

function numberWithCommas(x) {
    return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}
登录后复制

此方法使用正则表达式来查找每三个数字后出现的位置(B(?=(d{3}) (?!d))),然后将其替换为逗号(,)。

浮点数处理:

该方法也可以处理浮点数,只要将浮点数转换为字符串再进行格式化即可:

const numberWithCommas = (x) => x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");

console.log(numberWithCommas(1234567.89)); // "1,234,567.89"
登录后复制

以上是如何在 JavaScript 中格式化带有千位分隔符的数字?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板