 
- 帖子
- 2874
- 积分
- 7021
- 技术
- 336
- 捐助
- 0
- 注册时间
- 2011-6-2
|
[转载代码] [PowerShell每日技巧]左对齐、右对齐(20140306)
If you must make sure that a given string has a uniform width, then you can use .NET methods to pad the string appropriately:
PS C:\> $mytext = 'Test'
PS C:\> $paddedText = $mytext.PadLeft(15)
PS C:\> "Here is the text: '$paddedText'"
Here is the text: ' Test'
PS C:\>
PS C:\> $paddedText = $mytext.PadRight(15)
PS C:\> "Here is the text: '$paddedText'"
Here is the text: 'Test '
|
You can even add a padding character yourself (if you do not want to pad with spaces):
PS C:\> 'Hello'.PadLeft(20, '.')
...............Hello
PS C:\> 'Hello'.PadRight(20, '_')
Hello_______________
|
http://powershell.com/cs/blogs/tips/archive/2014/03/06/padding-strings-left-and-right.aspx |
|