string.Format("{0:n0}") in javascript
本文关键字:quot javascript in n0 Format string | 更新日期: 2023-09-27 18:10:02
我想找到一个等效的函数:
string.Format("{0:n0}")
在javascript。或者换句话说,我有一个长数字10898502,我想像这样显示它10898502。
有简单的方法吗?
谢谢,
对于纯Javascript解决方案,我建议使用下面的函数。这是由这个SO社区Wiki条目:我如何在JavaScript中格式化数字作为货币?
Number.prototype.formatMoney = function(c, d, t){
var n = this,
c = isNaN(c = Math.abs(c)) ? 2 : c,
d = d == undefined ? "." : d,
t = t == undefined ? "," : t,
s = n < 0 ? "-" : "",
i = parseInt(n = Math.abs(+n || 0).toFixed(c)) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return s + (j ? i.substr(0, j) + t : "") + i.substr(j).replace(/('d{3})(?='d)/g, "$1" + t) + (c ? d + Math.abs(n - i).toFixed(c).slice(2) : "");
};
console.log(
(1000000.94).formatMoney(1, '.', ',') // 1,000,000.9
);