PowerShell 技能连载 - 字符串左右对齐
如果您需要确保给定的字符串有一致的宽度,那么您可以使用 .NET 方法来适当地对齐字符串:
$mytext = 'Test'
$paddedText = $mytext.PadLeft(15)
"Here is the text: '$paddedText'"
$paddedText = $mytext.PadRight(15)
"Here is the text: '$paddedText'"
以下是结果:
您甚至可以自己指定补充的字符(如果您不想使用空格来补的话):
PowerShell 技能连载 - 字符串左右对齐
http://blog.vichamp.com/2014/03/06/padding-strings-left-and-right/