Return to Snippet

Revision: 31924
at September 15, 2010 23:31 by housecor


Updated Code
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) : "");
};


//ie
to drop decimals: .formatMoney(0, '.', ',')
to keep 2 decimals: .formatMoney(2, '.', ',')

Revision: 31923
at September 15, 2010 23:31 by housecor


Initial Code
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) : "");
};


/ie
to drop decimals: .formatMoney(0, '.', ',')
to keep 2 decimals: .formatMoney(2, '.', ',')

Initial URL


Initial Description


Initial Title
Format string as money

Initial Tags
format

Initial Language
JavaScript