這是我的 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