这是我的 PowerShell 代码:
$Phones = @('iPhone 12', 'Samsung S5', 'Nokia 7')
$Manufs = @('US', 'South Korea', 'Finlandia')
$n = 0
$Phones | foreach {
"$($_) : $($Manufs[$n])"
$n++
}
输出:
iPhone 12: US
Samsung S5: South Korea
Nokia 7: Finlandia
如何对齐空格/制表符,:
使其变成:
iPhone 12 : US
Samsung S5 : South Korea
Nokia 7 : Finlandia
答案1
如果你获取最长字符串的长度然后你可以使用带格式的字符串插值(格式运算符-f
),也许是这样的:
$Phones = @('iPhone 12', 'Samsung S5', 'Nokia 7', 'Samsung Galaxy S II Epic 4G Touch')
$Manufs = @('US', 'South Korea', 'Finlandia', 'South Korea')
$maxLen = ($Phones | Measure-Object -Maximum -Property Length).Maximum
$formatString = "{0, -$maxLen} : {1}"
$n = 0
$Phones | foreach {
$formatString -f $_, $Manufs[$n]
$n++
}
要得到:
iPhone 12 : US
Samsung S5 : South Korea
Nokia 7 : Finlandia
Samsung Galaxy S II Epic 4G Touch : South Korea
如果您希望第一个项目在其“列”中右对齐,则可以使用:
$formatString = "{0, $maxLen} : {1}"
(注意那一个里面没有-
)得到:
iPhone 12 : US
Samsung S5 : South Korea
Nokia 7 : Finlandia
Samsung Galaxy S II Epic 4G Touch : South Korea