PowerShell数组与switch语句,PowerShell中数组可以与switch语句结合,产生意想不到的效果。
PowerShell中数组可以与switch语句结合,产生意想不到的效果。
先看看例子:
$myArray = 1,5,4,2,3,5,2,5 Switch ( $myArray ) { 1 { 'one' } 2 { 'two' } 3 { 'three' } 4 { 'four' } 5 { 'five' } }
在switch之后会自动输出,所以,最终的结果就成了:
one five four two three five two five