Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To meet a specification I need to format a decimal value with the rule:

  • All values must have at least two decimal places and at most six.

Example:

Value        Formatted
1            1.00
1.1          1.10
1.1234       1.1234
1.123456     1.123456
1.12345678   1.123456

I guess I'll end using a condition, but I wonder if there is a format string which can do this.

share|improve this question

1 Answer

up vote 10 down vote accepted

Have you tried:

.ToString("0.00####");

share|improve this answer
Perfect! Thanks a lot. – MiguelM Jul 18 '11 at 21:11
This is incorrect. 1.12345678 will turn into 1.123457 (note the rounding) – Joe Mar 28 '12 at 16:05

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.