Uma solução mais completa
O núcleo disso é a replace
chamada. Até agora, acho que nenhuma das soluções propostas lida com todos os seguintes casos:
- Inteiros:
1000 => '1,000'
- Cordas:
'1000' => '1,000'
- Para strings:
- Preserva zeros após decimal:
10000.00 => '10,000.00'
- Descarta zeros à esquerda antes do decimal:
'01000.00 => '1,000.00'
- Não adiciona vírgulas após decimal:
'1000.00000' => '1,000.00000'
- Preserva a liderança
-
ou +
:'-1000.0000' => '-1,000.000'
- Retorna cadeias não modificadas que não contêm dígitos:
'1000k' => '1000k'
A função a seguir faz todas as ações acima.
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));
}
);
};
Você poderia usá-lo em um plugin jQuery como este:
$.fn.addCommas = function() {
$(this).each(function(){
$(this).text(addCommas($(this).text()));
});
};