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 add a comma in the thousands place for a number. String.Format()?

share|improve this question

13 Answers

up vote 98 down vote accepted

http://msdn.microsoft.com/en-us/library/fht0f5be.aspx

      ' Format a negative integer or floating-point number in various ways.
  Console.WriteLine("Standard Numeric Format Specifiers")
  s = String.Format("(C) Currency: . . . . . . . . {0:C}" & vbCrLf & _
                    "(D) Decimal:. . . . . . . . . {0:D}" & vbCrLf & _
                    "(E) Scientific: . . . . . . . {1:E}" & vbCrLf & _
                    "(F) Fixed point:. . . . . . . {1:F}" & vbCrLf & _
                    "(G) General:. . . . . . . . . {0:G}" & vbCrLf & _
                    "    (default):. . . . . . . . {0} (default = 'G')" & vbCrLf & _
                    "(N) Number: . . . . . . . . . {0:N}" & vbCrLf & _
                    "(P) Percent:. . . . . . . . . {1:P}" & vbCrLf & _
                    "(R) Round-trip: . . . . . . . {1:R}" & vbCrLf & _
                    "(X) Hexadecimal:. . . . . . . {0:X}" & vbCrLf, _
                    - 123, - 123.45F)
  Console.WriteLine(s)

Yields:

(C) Currency: . . . . . . . . ($123.00)
(D) Decimal:. . . . . . . . . -123
(E) Scientific: . . . . . . . -1.234500E+002
(F) Fixed point:. . . . . . . -123.45
(G) General:. . . . . . . . . -123
    (default):. . . . . . . . -123 (default = 'G')
(N) Number: . . . . . . . . . -123.00
(P) Percent:. . . . . . . . . -12,345.00 %
(R) Round-trip: . . . . . . . -123.45
(X) Hexadecimal:. . . . . . . FFFFFF85
share|improve this answer
String.Format("{0:n}", 1234);

string.Format("{0:n0}", 9876); // no decimals.
share|improve this answer
1  
{0:n} is giving me unwanted decimal places – Maslow Apr 16 '10 at 0:18
36  
{0:n0} will remove those – Hafthor May 5 '10 at 17:47
4  
String.Format("{0:#,##0}", 1234); also works with no decimal places. – Greg Bray Nov 5 '10 at 3:50
6  
@GregBray That solution is not good from an internationalisation point of view - other cultures use characters other than , as a thousands separator, for example a space or even .. – Justin Jan 31 '12 at 17:02
3  
@Justin: According to msdn.microsoft.com/en-us/library/0c899ak8.aspx, the ',' (and the '.') are replaced with the correct localized characters. – Roger Lipscombe Mar 4 at 9:29
show 3 more comments
int number = 1000000000;
string whatYouWant = number.ToString("#,##0");
//You get: 1,000,000,000
share|improve this answer
3  
This solution is not good from an internationalisation point of view - other cultures use characters other than , as a thousands separator, for example a space or even .. – Justin Jan 31 '12 at 17:04
Works thanks + 1. Have extended so shows up to 2 d.p. number.ToString("#,##0.##") – Crab Bucket Mar 30 '12 at 10:38

I found this to be the simplest way: myString.ToString("N0")

share|improve this answer
1  
You can also use it with string.Format, as in string.Format("Here is some number with commas, and no decimals, {0:N0}", 123456789(; – Dan Morphis Oct 21 '11 at 2:52
This is actually the only one that works properly. – IanC Feb 14 at 14:15

if u want culture specific, you might want to try this.

(19950000.0).ToString("N",new CultureInfo("en-US")) = 19,950,000.00

(19950000.0).ToString("N",new CultureInfo("is-IS")) = 19.950.000,00

note: some cultures use , to mean decimal rather than . so becareful.

share|improve this answer
int num = 98765432;
Console.WriteLine(string.Format("{0:#,#}", num));
share|improve this answer
2  
Or Console.WriteLine("{0:#,#}",num); if you just want to print it. But string.Format(...) is more useful I guess. – Kip9000 Aug 25 '11 at 14:42

Note that the value that you're formatting should be numeric. It doesn't look like it will take a string representation of a number and format is with commas.

share|improve this answer
string.format("{0:#,###,###.##}", MyNumber)

That will give you commas at the thousand, and millions point.

share|improve this answer
2  
The ":n" method is better since it should respect the user's locale. – Torlack Sep 19 '08 at 21:30
3  
This is true, but it's not guaranteed to give you commas at the thousand point because it respect the user's locale. – Stephen Wrighton Sep 19 '08 at 21:35
right back at you: that is true, but it's not guaranteed to respect the user's locale because it uses commas as thousands separator. (As an example, in Portugal the comma is instead the decimal separator.) – ANeves May 19 '10 at 17:46

For example String.Format("{0:0,0}", 1); returns 01, for me is not valid

This works for me

19950000.ToString("#,#", CultureInfo.InvariantCulture));

output 19,950,000

share|improve this answer

C# version of accepted answer,

Console.WriteLine("Standard Numeric Format Specifiers");
String s = String.Format("(C) Currency: . . . . . . . . {0:C}\n" +
                    "(D) Decimal:. . . . . . . . . {0:D}\n" +
                    "(E) Scientific: . . . . . . . {1:E}\n" +
                    "(F) Fixed point:. . . . . . . {1:F}\n" +
                    "(G) General:. . . . . . . . . {0:G}\n" +
                    "    (default):. . . . . . . . {0} (default = 'G')\n" +
                    "(N) Number: . . . . . . . . . {0:N}\n" +
                    "(P) Percent:. . . . . . . . . {1:P}\n" +
                    "(R) Round-trip: . . . . . . . {1:R}\n" +
                    "(X) Hexadecimal:. . . . . . . {0:X}\n",
                    - 1234, -1234.565F);
Console.WriteLine(s);

Example output (en-us culture):

(C) Currency: . . . . . . . . ($1,234.00)
(D) Decimal:. . . . . . . . . -1234
(E) Scientific: . . . . . . . -1.234565E+003
(F) Fixed point:. . . . . . . -1234.57
(G) General:. . . . . . . . . -1234
    (default):. . . . . . . . -1234 (default = 'G')
(N) Number: . . . . . . . . . -1,234.00
(P) Percent:. . . . . . . . . -123,456.50 %
(R) Round-trip: . . . . . . . -1234.565
(X) Hexadecimal:. . . . . . . FFFFFB2E
share|improve this answer

If you wish to force a "," separator regardless of culture (for example in a trace or log message), the following code will work and has the added benefit of telling the next guy who stumbles across it exactly what you are doing.

int integerValue = 19400320; 
string formatted = string.Format(CultureInfo.InvariantCulture, "{0:N0}", integerValue);

sets formatted to "19,400,320"

share|improve this answer

The method I used to not worry anymore about cultures and potential formatting issues is that I formatted it as currency and took out the currency symbol afterwards.

if (decimal.TryParse(tblCell, out result))

{
  formattedValue = result.ToString("C").Substring(1);
}
share|improve this answer
3  
This code is not culture independent - it will use whatever default culture is set on the machine running the code. This could create undesired output where that culture places their currency symbols at the end of the number rather than the start (e.g. fr-FR), or uses more than one character to denote the currency (e.g. da-DK), or does not separate thousands using commas (e.g. most of mainland Europe). – raveturned Jun 13 '12 at 21:08

you can use this code in javascript

function GetNumberWithQ(Price) {

    var myNumber = Price.toString(); // Price Is Your Namber Your Number 
       var myResult = "";
        for (var i = myNumber.length - 1; i >= 0; i--)
        {
            myResult = myNumber[i] + myResult;
            if ((myNumber.length - i) % 3 == 0 & i > 0)
                myResult = "," + myResult;
        }

        return myResult;   
}
share|improve this answer
12  
you can use .WithCommas in any imaginary language too, but this is about c#. -1 – atamanroman Jul 23 '10 at 11:54

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.