vote up 5 vote down star

Silly question, I want to format an integer so that it appears with the 1000's separator (,), but also without decimal places and without a leading 0.

My attempts so far have been:

String.Format("{0} {1}", 5, 5000);            // 5 5000
String.Format("{0:n} {1:n}", 5, 5000);        // 5.00 5,000.00
String.Format("{0:0,0} {1:0,0}", 5, 5000);    // 05 5,000

The output I'm after is:

5 5,000

Is there something obvious that I'm missing?

flag

3 Answers

vote up 3 vote down check

THis worked for me.

String.Format("{0:#,0} {1:#,0}", 5, 5000)
link|flag
vote up 0 vote down

Try

String.Format("{0:#,#}", 4000);
link|flag
vote up 5 vote down
String.Format("{0:#,#} {1:#,#}", 5, 5000); //  5 5,000
  • 0 in a format string means put the digit that belongs here, or else a zero.
  • # means put a space if there isnt a significant digit here.
link|flag

Your Answer

Get an OpenID
or

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