vote up 0 vote down star

MSDN provides a digit placeholder example:
1234.5678 ("#####") -> 1235
I found this confusing (I expected 1234 or something), so I wrote this snippet in C# to test it:

Console.WriteLine(String.Format("{0:#}", 1234.5678));
Console.WriteLine(String.Format("{0:#####}", 1234.5678));
Console.WriteLine(String.Format("{0:#}", "1234.5678"));
Console.WriteLine(String.Format("{0:#####}", "1234.5678"));

It gives this output:

1235
1235
1234.5678
1234.5678

Please explain.

flag

63% accept rate

6 Answers

vote up 13 vote down check

The first two String.Format calls are formatting a number (decimal) value. The format string is set to only show the integer portion (before the decimal point) so the value is rounded.

The second two String.Format calls are formatting a string value which happens to contain the string representation of a number. As a result, you are getting back exactly what you provided. The digit placeholder only applies to numeric values which passed to String.Format.

link|flag
32 seconds faster, and better written... shoot! – Instantsoup Aug 21 at 15:00
1  
+1 though I can't decide whether to correct "numberic" or give you an extra vote (not possible) for it. :-) – tvanfosson Aug 21 at 15:01
Ah, rounding is the key point I was missing. – Brian Aug 21 at 15:23
vote up 0 vote down

The first two are numbers, so the formatting is applied, they get rounded up and the decimal is thrown away. The second two are strings, so no number formatting is applied to them.

link|flag
vote up 2 vote down

Try:

Console.WriteLine(String.Format("{0:#####.##}", 1234.5678));

Which will give 1234.57

You need to specify the decimal place. Also, the last two are strings, so number formats won't apply.

link|flag
vote up 0 vote down

As documented in the MSDN article that you linked, the format specifier ('#') only applies to numeric types.

Custom numeric format specifiers are supported by all of the numeric types in the .NET Framework class library. These include the BigInteger, Byte, Decimal, Double, Int16, Int32, Int64, SByte, Single, UInt16, UInt32, and UInt64 types.

You are passing a string and no numeric type in the third and forth line, hence no formattin is applied.

link|flag
vote up 0 vote down

The first two formats you are specifying no decimal places so it will round the number accordingly. The last two lines aren't formatting numbers, you are formatting strings, so the numerical formatting doesn't apply.

link|flag
vote up 0 vote down

Numbers get rounded as no decimal places are defined in the pattern. Strings don't get rounded, as they're strings.

link|flag

Your Answer

Get an OpenID
or

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