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' }
}
数组中的所有元素都是在1,2,3,4,5这个范围的。通过一个switch语句,把每个数字做一个翻译。
在switch之后会自动输出,所以,最终的结果就成了:
复制代码 代码如下:
one
five
four
two
three
five
two
five
这是一个很新奇的效果,先记录在这里,后面有需要再来深度挖掘它。
您可能感兴趣的文章:- 探索PowerShell (八) 数组、哈希表(附:复制粘贴技巧)
- Powershell创建数组正确、更快的方法
- PowerShell查找数组内容、搜索数组、查询数组的方法
- PowerShell中的强类型数组介绍
- PowerShell数组的一些操作技巧
- PowerShell数组操作简明教程
- Windows Powershell 命令返回数组
- Windows Powershell 创建数组