How do I format a string with commas to display in curreny format?
Assume the incoming string is a big number. For example, "1234567901234567890123456"
I want result as "12,345,678,901,234,567,890,123,456"
The DecimalFormat in Java has a limitation to format a big number.
Thanks.