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.

Possible Duplicate:
Round a double to 2 significant figures after decimal point

I need at most N decimals, no more, but I don't want trailing zeroes. For example, if N = 2 then

15.352
15.355
15.3
15

should become (respectively)

15.35
15.36
15.3
15

share|improve this question
1  
Do you want a third digit of "5" to always round up, or round to even? – Jon Skeet Nov 26 '11 at 8:02
It should always round up. – Nikola Novak Nov 26 '11 at 8:14
2  
Out of interest, what do these numbers represent? It's possible that you should be using decimal instead of double to start with. – Jon Skeet Nov 26 '11 at 8:22
They are values which I use either to draw a graph or display in a table. Additionally I perform some operations on sets of these numbers to get hourly, daily, weekly (etc.) averages, maximums, minimums or totals and then use those values on the graph/table. When drawing a graph I always use double, but placing, for example, an averaged value as it is in a table creates an unreadable mess of digits, which is why I need to format them in this way (and each column needs to round to a different number of digits). – Nikola Novak Nov 26 '11 at 9:18
But what are the values actually representing? Height? Money? – Jon Skeet Nov 26 '11 at 9:21
show 3 more comments

marked as duplicate by casperOne Sep 18 '12 at 12:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

Try Math.Round(value, 2).ToString()

Math.Round(15.352, 2).ToString();  //15.35
Math.Round(15.355, 2).ToString();  //15.36
Math.Round(15.3, 2).ToString();    //15.3
Math.Round(15.0, 2).ToString();    //15

The second paramater for round is for you to specify how many decimal places to round to. It will round up by default.

share|improve this answer
Yes, that does the job. Thank you! – Nikola Novak Nov 26 '11 at 9:06

This can be done by using a custom format string, such as "0.##", which displays a maximum two decimal places.

String.Format("{0:0.##}", 123.4567);      // "123.46"

Reference: http://www.csharp-examples.net/string-format-double/

share|improve this answer
Yes, that does the job for N = 2, but I was hoping there was a way to convert to string for any N. Using, for example double.ToString("N" + X.ToString()), where X is int, will do this, but will also add trailing zeroes which I don't want. – Nikola Novak Nov 26 '11 at 8:12
@NikolaNovak is it possible to use decimal instead of double in your case? If so, you can use Decimal.Round(Decimal, Int32) method. msdn.microsoft.com/en-gb/library/6be1edhb.aspx – Andrii Startsev Nov 26 '11 at 8:53
See my exchange with Jon Skeet in the comments to the question. – Nikola Novak Nov 26 '11 at 9:35

Google does lead the way: Use ## to skip leading zeros in your format string.

// max. two decimal places
String.Format("{0:0.##}", 123.4567);      // "123.46"
String.Format("{0:0.##}", 123.4);         // "123.4"
String.Format("{0:0.##}", 123.0);         // "123"
share|improve this answer

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