PowerShell中有-contain、-like、-in等操作符,使用这些操作符,可以很方便的在数组中查找元素内容。其中in操作符貌似要在PowerShell 3.0中才有。
先看一个例子,将Windows目录的所有文件的文件名放入到数组$name中,然后在数组$name中查找exploer.exe元素。且看-contains的魅力!
复制代码 代码如下:
PS> $names = Get-ChildItem -Path $env:windir | Select-Object -ExpandProperty Name
PS> $names -contains 'explorer.exe'
True
-contains操作符确实很强大,但是很遗憾,它不能在指定字符串中包含通配符。如果想使用通配符进行查找数组元素,则可以使用-like操作符。
复制代码 代码如下:
PS> $names -contains 'explorer*'
False
上面的例子说明了-contains不能使用通配符,下面我们来使用-like看看。
复制代码 代码如下:
PS> $names -like 'explorer*'
explorer.exe
文章一开头小编还说了,可以使用-in操作符来来作类似的处理,而且in操作符还可以将数组和要匹配的字符串反过来。什么意思呢?且看下面几个例子。
复制代码 代码如下:
PS> 'Peter', 'Mary', 'Martin' -contains 'Mary'
True
PS> 'Peter', 'Mary', 'Martin' -contains 'Ma*'
False
PS> 'Mary' -in 'Peter', 'Mary', 'Martin'
True
PS> 'Peter', 'Mary', 'Martin' -like 'Ma*'
Mary
Martin
PS> @('Peter', 'Mary', 'Martin' -like 'Ma*').Count -gt 0
以上几个例子的含义,大家自行理解。关于使用PowerShell在数组中查找元素,小编就介绍这么多,希望对大家有所帮助。
您可能感兴趣的文章:- 探索PowerShell (八) 数组、哈希表(附:复制粘贴技巧)
- Powershell创建数组正确、更快的方法
- PowerShell数组结合switch语句产生的奇特效果介绍
- PowerShell中的强类型数组介绍
- PowerShell数组的一些操作技巧
- PowerShell数组操作简明教程
- Windows Powershell 命令返回数组
- Windows Powershell 创建数组