码迷,mamicode.com
首页 > 其他好文 > 详细

String.PadLeft - 格式对齐

时间:2014-10-25 20:06:47      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   strong   sp   div   on   

语法:public string PadLeft(

int totalWidth, char paddingChar

)

概述,实现的效果是右对齐,返回一个总长度为 totalWidth,如果实际长度小于totalWidth,则用 字符 paddingChar填充.

例如,对于 实现如下效果(月 日 年)的格式(它们是整型):

 9 26 1963
 9 27 1963
 9 28 1963  
 9 29 1963   
 9 30 1963   
10  1 1963    
10  2 1963    
10  3 1963   
10  4 1963    
10  5 1963    
10  6 1963
10  7 1963

可以用如下代码实现:

1 month.ToString().PadLeft(2,  ) + " " + (curDay + 1).ToString().PadLeft(2,  ) + " " + year.ToString().PadLeft(4,  )

 

String.PadLeft - 格式对齐

标签:style   blog   color   os   ar   strong   sp   div   on   

原文地址:http://www.cnblogs.com/listened/p/4050747.html

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