C# string format 補 0/空白
資料來源:http://slashlook.com/articles_20140509.html
前面補0的數字字串
String.Format(“{0:0000}”, 157); //輸出 0157
前後都補0的數字字串
String.Format(“{0:0000.0000}”, 157.42); //輸出 0157.4200
格式化電話號碼
(String.Format(“{0:(###) ###-####}”, 8005551212); //輸出 (800) 555-1212
不滿特定長度的字串,後面補空白
String.Format(“{0,-10}”, “Hello”); //「Hello 」
不滿特定長度的字串,前面補空白
String.Format(“{0,10}”, “Hello”); //「 Hello」