Displaying Currency in Indian Numbering Format
Unfortunately on standard Java SE DecimalFormat doesn’t support variable-width groups. So it won’t ever format the values exactly as you want to: If you supply a pattern with multiple grouping characters, the interval between the last one and the end of the integer is the one that is used. So “#,##,###,####” == “######,####” == “##,####,####”. … Read more