设置数字格式,每3位小数点后加逗号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置数字格式,每3位小数点后加逗号相关的知识,希望对你有一定的参考价值。
Adds commas to numbers.1234567 becomes 1,234,567
function add_commas(nStr) { nStr += ''; x = nStr.split('.'); x1 = x[0]; x2 = x.length > 1 ? '.' + x[1] : ''; var rgx = /(d+)(d{3})/; while (rgx.test(x1)) { x1 = x1.replace(rgx, '$1' + ',' + '$2'); } return x1 + x2; }
以上是关于设置数字格式,每3位小数点后加逗号的主要内容,如果未能解决你的问题,请参考以下文章