gpt4 book ai didi

powershell - 是否有 PowerShell "string does not contain"cmdlet 或语法?

转载 作者:行者123 更新时间:2023-12-02 17:40:40 25 4
gpt4 key购买 nike

在 PowerShell 中,我正在读取文本文件。然后,我在文本文件上执行 Foreach-Object,并且只对不包含 $arrayOfStringsNotInterestedIn 中的字符串的行感兴趣。

这个的语法是什么?

   Get-Content $filename | Foreach-Object {$_}

最佳答案

如果 $arrayofStringsNotInterestedIn 是一个 [array] 你应该使用 -notcontains:

Get-Content $FileName | foreach-object { `
if ($arrayofStringsNotInterestedIn -notcontains $_) { $) }

或更好(IMO)

Get-Content $FileName | where { $arrayofStringsNotInterestedIn -notcontains $_}

关于powershell - 是否有 PowerShell "string does not contain"cmdlet 或语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com