【发布时间】:2017-03-18 12:58:49
【问题描述】:
我有一个脚本,我向它传递一个字符串,它会返回格式化为美元的字符串。因此,如果我发送它“10000”,它将返回“$10,000.00” 现在的问题是,当我发送它“1000000”(100 万美元)时,它返回“$1,000.00”,因为它仅设置为基于一组零进行解析。这是我的脚本,我该如何调整它以考虑两组零(100 万美元)??
String.prototype.formatMoney = function(places, symbol, thousand, decimal) {
if((this).match(/^\$/) && (this).indexOf(',') != -1 && (this).indexOf('.') != -1) {
return this;
}
places = !isNaN(places = Math.abs(places)) ? places : 2;
symbol = symbol !== undefined ? symbol : "$";
thousand = thousand || ",";
decimal = decimal || ".";
var number = Number(((this).replace('$','')).replace(',','')),
negative = number < 0 ? "-" : "",
i = parseInt(number = Math.abs(+number || 0).toFixed(places), 10) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return negative + symbol + (j ? i.substr(0, j) + thousand : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thousand) + (places ? decimal + Math.abs(number - i).toFixed(places).slice(2) : ""); };
提前感谢您提供任何有用的信息!
【问题讨论】:
-
使用循环。每当您需要重复代码时,请使用循环。
-
一般来说:这是很常见的事情,很可能存在您应该使用的 API 或库,而不是重新发明这个特定的轮子。
标签: javascript