码迷,mamicode.com
首页 > Windows程序 > 详细

C#怎么让字符串定长,不够的用空格补齐

时间:2014-12-09 11:55:32      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:sp   bs   ad   ef   as   nbsp   br   text   ht   

string.PadLeft 或者 string.PadRight  :

 

string.PadLeft 表示如果一个字符串的长度小于指定的值,则在字符串的左侧(也就是前面)用指定的字符填充,直到字符串长度达到最小值。

例:
string str2="abc";  
str2 = str2.PadLeft(20, " ");

C#怎么让字符串定长,不够的用空格补齐

标签:sp   bs   ad   ef   as   nbsp   br   text   ht   

原文地址:http://www.cnblogs.com/xiaoerlang90/p/4152789.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!