31
1
using System;
2
public class Program
3
{
4
public static void Main()
5
{
6
7
//Leading zeros vs leading spaces
8
DateTime exampleDT = new DateTime(2018, 8, 1, 0, 0, 0, 0);
9
10
string exampleHHMMSSusingD2 = string.Format(exampleDT.Hour.ToString("D2")) + ":" + string.Format("{0,3}", exampleDT.Minute.ToString("D2")) + ":" + string.Format("{0:D3}", exampleDT.Second.ToString("D1") +" 2 leading zeros");
11
string exampleHHMMSSusing000 = string.Format("{0:00}", exampleDT.Hour.ToString()) + ":" + string.Format("{0:D2}", exampleDT.Minute.ToString()) + ":" + string.Format("{0:11}", exampleDT.Second.ToString()+" no 2 leading zeros");
12
13
Console.WriteLine(exampleHHMMSSusingD2);
14
Console.WriteLine(exampleHHMMSSusing000);
15
Console.WriteLine();
16
17
//formatting a string of zeros
18
Console.WriteLine(string.Format("{0:00} string", "0000"));
19
Console.WriteLine(string.Format("{0:00} string", Convert.ToInt32("00000")));
20
Console.WriteLine(string.Format("{0:00} string", Convert.ToInt32("12345")));
21
Console.WriteLine(string.Format("{0:00} string", Convert.ToInt32(null)));
22
Console.WriteLine();
23
24
//using PadLeft
25
Console.WriteLine(string.Format("{0:00} pad", "1111".PadLeft(2, '0')));
26
Console.WriteLine(string.Format("{0:00} pad", "11".PadLeft(2, '0')));
27
Console.WriteLine(string.Format("{0:00} pad", "1".PadLeft(2, '0')));
28
Console.WriteLine(string.Format("{0:00} pad", "".PadLeft(2, '0')));
29
30
}
31
}
Cached Result
a is less than 20