vote up 1 vote down star

Hello,

I am using the format ToString("0,0") to display a number like

5000 as 5,000
but if the number is 0 - 9, it displays 01, 02, 03, etc. Does anyone know the correct syntax so it does not display the leading 0?

Thanks, XaiSoft

flag

67% accept rate
Is that comma at the end of 5,000, for the sentence or the number? :P – LFSR Consulting Feb 12 at 22:31
lol, the sentence. – Xaisoft Feb 12 at 22:32

3 Answers

vote up 15 vote down check
ToString("#,0")

Also, this may help you further

link|flag
1  
+1 for cheat sheet link – geofftnz Feb 12 at 22:34
He, thanks. I just found it today, it has a lot more also very useful – Juan Manuel Feb 12 at 22:35
vote up 1 vote down
ToString("N0")
link|flag
On first sight, I thought this was a humorous answer saying "No, I don't know how to...". Then I realised that Oh was a Zero... – paxdiablo Feb 12 at 22:49
vote up 2 vote down

What you are looking for is the string formatter "N0". Example:

int x = 10000;
int y = 5;

Console.WriteLine(x.ToString("N0"));
Console.WriteLine(y.ToString("N0"));

Prints:

10,000
5

More information 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.