PowerShell 技能连载 - 使用通配符确定数组是否包含值

当您想了解一个数组是否包含某个指定的元素,PowerShell 提供了 -contains 操作符。然而这个操作符不支持通配符,所以您只能使用精确匹配。

以下是一个帮助您使用通配符过滤数组元素的解决方法:

1
2
3
4
5
6
7
8
9
$a = 'Hanover', 'Hamburg', 'Vienna', 'Zurich'

# is the exact phrase present in array?
$a -contains 'Hannover'
# is ANY phrase present in array that matches the wildcard expression?
(@($a) -like 'Ha*').Count -gt 0

# list all phrases from array that match the wildcard expressions
@($a) -like 'Ha*'

PowerShell 技能连载 - 使用通配符确定数组是否包含值

http://blog.vichamp.com/2017/03/28/determine-if-array-contains-value-using-wildcards/

作者

吴波

发布于

2017-03-28

更新于

2022-07-06

许可协议

评论