3C科技 娛樂遊戲 美食旅遊 時尚美妝 親子育兒 生活休閒 金融理財 健康運動 寰宇綜合

Zi 字媒體

2017-07-25T20:27:27+00:00
加入好友
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」      

本文由jashliaoeuwordpress提供 原文連結

寫了 5860316篇文章,獲得 23313次喜歡
精彩推薦