I have tried using NumberFormat
and DecimalFormat
. Even though I am using the en-In
locale, the numbers are being formatted in Western formats. Is there any option to format a number in lakhs format instead?
Ex - I want NumberFormatInstance.format(123456)
to give 1,23,456.00
instead of 123,456.00
(e.g., using the system described on this Wikipedia page).