數字 前面補0,補足6位(可替換任意字元) String number = "123"; String s = number.PadLeft(6, '0');. 輸出: 000123. 補空白: String s = number.
確定! 回上一頁