简体   繁体   中英

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

I have a number with a variable number of 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?

不确定(现在无法测试)但是这样的工作会怎么样?

"#,##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.

尝试ToString("N2")

我们来试试吧

[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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM