एक अधिक गहन समाधान
इसका मूल कारण replace
कॉल है। अब तक, मुझे नहीं लगता कि प्रस्तावित समाधानों में से कोई भी निम्नलिखित मामलों को संभालता है:
- पूर्णांकों:
1000 => '1,000'
- स्ट्रिंग्स:
'1000' => '1,000'
- तार के लिए:
- दशमलव के बाद शून्य संरक्षित करता है:
10000.00 => '10,000.00'
- दशमलव से पहले अग्रणी शून्य
'01000.00 => '1,000.00'
- दशमलव के बाद अल्पविराम नहीं जोड़ता है:
'1000.00000' => '1,000.00000'
- अग्रणी
-
या संरक्षित करता है +
:'-1000.0000' => '-1,000.000'
- गैर-अंक वाले रिटर्न, अनमोडिफाइड, तार:
'1000k' => '1000k'
निम्नलिखित फ़ंक्शन उपरोक्त सभी करता है।
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));
}
);
};
आप इसे इस तरह jQuery प्लगइन में उपयोग कर सकते हैं:
$.fn.addCommas = function() {
$(this).each(function(){
$(this).text(addCommas($(this).text()));
});
};