如果你必须统一字符串的长度,这时你可以使用.net方法填补它:
$mytext = 'Test' $paddedText = $mytext.PadLeft(15) "Here is the text: '$paddedText'" $paddedText = $mytext.PadRight(15) "Here is the text: '$paddedText'"
结果:
Here is the text: ' Test' Here is the text: 'Test '
你也可以填充特殊字符串(当你不想填充空格时)
$mytext.PadRight(15,")") $mytext.PadLeft(15,"&") #输出结果: #Test))))))))))) #&&&&&&&&&&&Test
原文地址: Padding Strings Left and Right
本文链接: https://www.pstips.net/padding-strings-left-and-right.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!
这个很实用,比如要构造001,002,003这样的字符串时。我在【PowerShell 分割和合并大文件】 :http://www.pstips.net/powershell-split-merge-large-file.html中有用到。