Una solución más completa
El núcleo de esto es la replace
llamada. Hasta ahora, no creo que ninguna de las soluciones propuestas maneje todos los siguientes casos:
- Enteros:
1000 => '1,000'
- Instrumentos de cuerda:
'1000' => '1,000'
- Para cuerdas:
- Conserva ceros después del decimal:
10000.00 => '10,000.00'
- Descarta los ceros a la izquierda antes del decimal:
'01000.00 => '1,000.00'
- No agrega comas después del decimal:
'1000.00000' => '1,000.00000'
- Conservas principales
-
o +
:'-1000.0000' => '-1,000.000'
- Devuelve, sin modificar, cadenas que no contienen dígitos:
'1000k' => '1000k'
La siguiente función hace todo lo anterior.
addCommas = function(input){
// If the regex doesn't match, `replace` returns the string unmodified
return (input.toString()).replace(
// Each parentheses group (or 'capture') in this regex becomes an argument
// to the function; in this case, every argument after 'match'
/^([-+]?)(0?)(\d+)(.?)(\d+)$/g, function(match, sign, zeros, before, decimal, after) {
// Less obtrusive than adding 'reverse' method on all strings
var reverseString = function(string) { return string.split('').reverse().join(''); };
// Insert commas every three characters from the right
var insertCommas = function(string) {
// Reverse, because it's easier to do things from the left
var reversed = reverseString(string);
// Add commas every three characters
var reversedWithCommas = reversed.match(/.{1,3}/g).join(',');
// Reverse again (back to normal)
return reverseString(reversedWithCommas);
};
// If there was no decimal, the last capture grabs the final digit, so
// we have to put it back together with the 'before' substring
return sign + (decimal ? insertCommas(before) + decimal + after : insertCommas(before + after));
}
);
};
Puede usarlo en un complemento jQuery como este:
$.fn.addCommas = function() {
$(this).each(function(){
$(this).text(addCommas($(this).text()));
});
};