vote up 4 vote down star

Hi, I have a requirement to pad all single digits numbers with a starting zero. Can some one please suggest the best method? (ex 1 -> 01, 2 -> 02, etc)

flag

47% accept rate
How are you outputting these? If you're, for example, binding them to a control in ASP.NET, there's probably an easier way to apply the format string as you bind them. – bdukes Jan 28 at 21:41

3 Answers

vote up 12 vote down check

I'd call .ToString on the numbers, providing a format string which requires two digits, as below:

int number = 1;
string paddedNumber = number.ToString("00");
link|flag
Awesome, thank you! – Alex Jan 28 at 21:45
vote up 5 vote down
number.ToString().PadLeft(2, '0')
link|flag
vote up 1 vote down

Assuming you're just outputing these values, not storing them

int number = 1;
Console.Writeline("{0:00}", number);

Here's a useful resource for all formats supported by .Net.

link|flag

Your Answer

Get an OpenID
or

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