首页 > 代码库 > 字符串格式化

字符串格式化

把Int值格式化为right-align定长的字符串:

int i = 40;string s = i.ToString().PadLeft(3,‘0‘);//s="040"

 

字符串格式化