我正在使用数学 javascript,但在将逗号替换为点,将点替换为逗号时遇到了一些麻烦。我可以让千位分隔符的逗号改变,但无法让小数点变成逗号。我没有高兴地尝试了其他帖子的一些建议。目标是实现希腊应用程序的数字格式。
这是我所拥有的:
function addCommas(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');
x2 = x.replace(/,([^,]*)$/, ".$1");
}
return x1 + x2;
}
function addCommas2(nStr, nztr) {
var sam = nStr.toFixed(nztr);
return sam;
}
function roundNumber(num, dec) {
return Math.round(num * Math.pow(10, dec)) / Math.pow(10, dec);
}