在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
[C#]將數字前面補0,補足設定的長度這是在小舖遇到的問題,如何將數字前面補0,補足設定的長度 例如 將 123 前面補0,補到長度為6,可以透過 String.PadLeft 與 String.Format 的方式 http://msdn.microsoft.com/zh-tw/library/system.string.padleft(VS.80).aspx http://msdn.microsoft.com/zh-tw/library/system.string.format(VS.80).aspx
// 將數字前面補0,補足長度為6
String snum = "123"; String pnum = snum.PadLeft(6, '0'); + fnum); 執行結果 參考 http://www.blueshop.com.tw/board/show.asp?subcde=BRD20090319214030QIF&fumcde= http://www.cnblogs.com/tuyile006/archive/2006/07/13/449884.aspx |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论