标签:sp bs ad ef as nbsp br text ht
string.PadLeft 或者 string.PadRight :
string.PadLeft 表示如果一个字符串的长度小于指定的值,则在字符串的左侧(也就是前面)用指定的字符填充,直到字符串长度达到最小值。
例:
string str2="abc";
str2 = str2.PadLeft(20, " ");
标签:sp bs ad ef as nbsp br text ht
原文地址:http://www.cnblogs.com/xiaoerlang90/p/4152789.html