I would like to translate 10000000.0 to PREFIX10,000,000.00
May I know what pattern I should pass into DecimalFormat?
NumberFormat numberFormat = new DecimalFormat(...);
numberFormat.format(10000000.0);
|
I would like to translate May I know what pattern I should pass into DecimalFormat?
|
|||||||
|
This will always show at least one integer digit (e.g. 0), and use comma as group separator. |
|||
|
|
|
The pattern for the number would be:
The prefix can be an arbirary string. If it is a currency symbol, there is a special notation for that. For more info on the definition of patterns, see the DecimalFormat JavaDoc |
||||
|
|