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.

I want to format a string as a decimal, but the decimal contains some following zeros after the decimal. How do I format it such that those meaningless 0's disappear?

string.Format("{0}", 1100M);
string.Format("{0}", 1100.1M);
string.Format("{0}", 1100.100M);
string.Format("{0}", 1100.1000M);

displays:

1100
1100.1
1100.100
1100.1000

but I want it to be:

1100
1100.1
1100.1
1100.1

For reference, here are other questions that are essentially duplicates of this, that I've found thanks to answers given here:

share|improve this question
Is 1002.231 Just an example? That is, would you like 1.12000 to be 1.12 or 1.120? – n8wrl Jan 24 '11 at 20:23
Note that if you want a decimal value, you should use one, e.g. 1100.1000m. Note the "m" for "decimal literal". – Jon Skeet Jan 24 '11 at 20:26
@Jon: Thanks I noticed that also and went to fix it, and your comment was waiting for me when I returned.. So fast... ;) – Scott Stafford Jan 24 '11 at 20:27
@n8wrl: Just an example, yes, I updated with more examples. – Scott Stafford Jan 24 '11 at 20:27

10 Answers

up vote 22 down vote accepted

If you have a decimal named dec, you can use dec.toString("G29") to give you exactly what you are asking for with a single line of code.

From Question 4 in the .NET Numeric Types FAQ:

The G format with a number means to format that many significant digits. Because 29 is the most significant digits that a Decimal can have, this will effectively truncate the trailing zeros without rounding.

EDIT: Something to be aware of: if your number is less than 0.0001 (eg, 0.00009) it will be displayed in scientific notation (9E-05)

share|improve this answer
4  
I think this is the best solution to the question. – Wegged May 13 '11 at 17:17
1  
Concur -- switched answer. Thanks, @Herohtar. – Scott Stafford Oct 5 '12 at 18:45
WARNING: Watch out for values like 0.000001. G29 format will present them in the shortest possible way so it will switch to the exponential notation. string.Format("{0:G29}", decimal.Parse("0.00000001",System.Globalization.CultureInfo.GetCultureInfo("en-U‌​‌​S"))) will give "1E-08" as the result. Credit goes to Konrad here: stackoverflow.com/questions/4525854/remove-trailing-zeros/… – Doug S Nov 7 '12 at 22:26
@DougS: It seems that it switches to scientific notation for numbers less than 0.0001 (eg, 0.0001 remains the same, but 0.00009 will be 9E-05) That seems unlikely to be a problem in most cases of wanting to truncate zeros, but a good thing to know nonetheless. – Herohtar Nov 9 '12 at 15:39
@Herohtar: I wouldn't say it's "unlikely" at all. In fact, it's very likely if someone is working with decimals less than 1. For instance, I store decimal(12,10) in my database, and G29 would fail on 0.0000010000 or anything like it. – Doug S Nov 10 '12 at 17:19
show 1 more comment
string s = d.ToString("0.#############################");
share|improve this answer

They're not necessarily meaningless - they indicate the precision during calculation. Decimals maintain their precision level, rather than being normalized.

I have some code in this answer which will return a normalized value - you could use that, and then format the result. For example:

using System;
using System.Numerics;

class Test
{
    static void Display(decimal d)
    {
        d = d.Normalize(); // Using extension method from other post
        Console.WriteLine(d);
    }

    static void Main(string[] args)
    {
        Display(123.4567890000m); // Prints 123.456789
        Display(123.100m);        // Prints 123.1
        Display(123.000m);        // Prints 123
        Display(123.4567891234m); // Prints 123.4567891234
    }
}

I suspect that most of the format string approaches will fail. I would guess that a format string of "0." and then 28 # characters would work, but it would be very ugly...

share|improve this answer
1  
It looks like your solution is for .Net 4.0 only. – Gabe Jan 24 '11 at 20:34
@Gabe: Unless you use a 3rd party BigInteger implementation, yes. It's also pretty inefficient. On the other hand, it has the advantage of working :) – Jon Skeet Jan 24 '11 at 20:34

You can specify the format string like this:

String.Format("{0:0.000}", x);
share|improve this answer
2  
But I don't know that it's got three decimals on the end, I meant that only as an example. I'll make the question clearer. – Scott Stafford Jan 24 '11 at 20:22

Quite a few answers already. I often refer to this cheat sheet: http://blog.stevex.net/string-formatting-in-csharp/

share|improve this answer
+1 Nice reference link! – Paul Sasik Jan 24 '11 at 20:49

I believe you want to do:

var s = String.Format("{0:#####.###}");
share|improve this answer
Fails for 123.45678900m. – Jon Skeet Jan 24 '11 at 20:25

Somewhat hackish, but this should work:

decimal a = 100.00M;
string strNumber = string.Format("{0}", a);
Console.WriteLine(strNumber.Contains('.') ? strNumber.TrimEnd('0').TrimEnd('.') : strNumber);
share|improve this answer
Ack! What if a = 100.000? Or a = 0? – Gabe Jan 24 '11 at 20:35
What if a = 100M? – kerkeslager Jan 24 '11 at 20:35
@Gabe Was in the process of fixing – Davy8 Jan 24 '11 at 20:37
@kerk should be fixed now. Let me know if you find any counterexamples to the updated answer. – Davy8 Jan 24 '11 at 20:39
Wouldn't mind a downvote removal unless the updated answer still isn't satisfactory? – Davy8 Jan 24 '11 at 20:47
show 2 more comments

How about:

string FormatDecimal(decimal d)
{
    const char point = System.Globalization.NumberFormatInfo.CurrentInfo.NumberDecimalSeparator[0];
    string s = d.ToString();
    // if there's no decimal point, there's nothing to trim
    if (!s.Contains(point) == -1)
        return s;
    // trim any trailing 0s, followed by the decimal point if necessary
    return s.TrimEnd('0').TrimEnd(point);
}
share|improve this answer
Use System.Globalization.NumberFormatInfo.CurrentInfo.NumberDecimalSeparator instead of '.'? – Yoshi Jan 24 '11 at 21:26
Yoshi: Good idea! – Gabe Jan 24 '11 at 21:29

Use

var s = string.Format( "{0:F3}", x );
share|improve this answer
And if there are more than 3 digits of decimal precision? – Jon Skeet Jan 24 '11 at 20:24
Either I misunderstood the initial question, or it was modified. Likely I simple did not get it. – Uwe Keim Jan 24 '11 at 20:30
String.Format("{0:0.##}", 123.0); // "123"
share|improve this answer
Fails for 123.456789m. – Jon Skeet Jan 24 '11 at 20:24
Should be... String.Format("{0:0.0##}", 123.456789m) Thanks – John K. Jan 24 '11 at 20:30

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.