/ Published in: JavaScript
                    
                                        
Adds commas to numbers.
1234567 becomes 1,234,567
                1234567 becomes 1,234,567
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
function add_commas(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');
}
return x1 + x2;
}
URL: http://www.mredkj.com/javascript/nfbasic.html
Comments
 Subscribe to comments
                    Subscribe to comments
                
                