Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
1  
cheok, :P its me kubideh: – mohammad shamsi Aug 21 '10 at 17:31
mohammad :o salam! i am happy to see you here :D – Cheok Yan Cheng Aug 21 '10 at 17:39

2 Answers

up vote 6 down vote accepted
new DecimalFormat("PREFIX#,##0.00");

This will always show at least one integer digit (e.g. 0), and use comma as group separator.

share|improve this answer

The pattern for the number would be: "#,###.00" which means:

  1. use a grouping separator, based on locale
  2. use a decimal separator, based on locale
  3. always have 2 places after the decimal separator
  4. have as many whole number digits as is necessary

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.