开发者

How do I format a number in C# with commas and decimals?

I have a number with a variable number of开发者_StackOverflow中文版 digits after the decimal point. I want to format the number with commas and all decimal numbers.

For example: 42,023,212.0092343234

If I use ToString("N") I get only 2 decimals, ToString("f") gives me all decimals no commas. How do I get both?


Not sure (and unable to test right now) but would something like this work?

"#,##0.################"


string.Format("{0:#,##0.############}", value);

will give you up to 12 decimal places.

There is not a custom format specifier for "all following digits", so something like this will be closest to what you want.

Note too that you're limited by the precision of your variable. A double only has 15-16 digits of precision, so as your left-hand side gets bigger the number of decimal places will fall off.


UPDATE: Looking at the MSDN documentation on the System.Double type, I see this:

By default, a Double value contains 15 decimal digits of precision, although a maximum of 17 digits is maintained internally.

So I think pdr's on to something, actually. Just do this:

// As long as you've got at least 15 #s after the decimal point,
// you should be good.
value.ToString("#,#.###############");

Here's an idea:

static string Format(double value)
{
    double wholePart = Math.Truncate(value);
    double decimalPart = Math.Abs(value - wholePart);
    return wholePart.ToString("N0") + decimalPart.ToString().TrimStart('0');
}

Example:

Console.WriteLine(Format(42023212.0092343234));

Output:

42,023,212.00923432409763336

Ha, well, as you can see, this gives imperfect results, due (I think) to floating point math issues. Oh well; it's an option, anyway.


Try ToString("N2")


Let's try this

[DisplayFormat(DataFormatString = "{0:0,0.00}")]


Here is the way somewhat to reach to your expectation...

decimal d = 42023212.0092343234M;

NumberFormatInfo nfi  = (NumberFormatInfo) CultureInfo.InvariantCulture.NumberFormat.Clone();

nfi.NumberDecimalDigits= (d - Decimal.Truncate(d)).ToString().Length-2;

Console.WriteLine(d.ToString("N",nfi));

For more detail about NumberFormatInfo.. look at MSDN ..

http://msdn.microsoft.com/en-us/library/system.globalization.numberformatinfo.aspx

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜