2019年8月19日 星期一

PadLeft==>C# String 前面不足位數補零的方法

https://www.itread01.com/content/1544340274.html

int i=10;
方法1:Console.WriteLine(i.ToString("D5"));
方法2:Console.WriteLine(i.ToString().PadLeft(5,'0'));//推薦
方法3:Console.WriteLine(i.ToString("00000")); 
在 C# 中可以對字串使用 PadLeft 和 PadRight 進行輕鬆地補位。
PadLeft(int totalWidth, char paddingChar) //在字串邊用 paddingChar 補足 totalWidth 長度
PadRight(int totalWidth, char paddingChar) //在字串邊用 paddingChar 補足 totalWidth 長度
示例:
h = h.PadLeft(2, '0');
注意第二個引數為 char 型別,所以用單引號,也可以用 Convert.ToChar(string value) 把字串轉換成 char 型別。如果字串長度大於 1,則使用 str.ToCharArray()[index]。 

沒有留言:

張貼留言

WPF聊天室应用(ASP.NET Core SignalR)

  WPF聊天室应用(ASP.NET Core SignalR) https://www.bilibili.com/video/BV1Q741187Si?p=2 https://www.bilibili.com/video/BV1UV411e75T?from=search&...