gpt4 book ai didi

string - 用于模式数组的 Powershell 搜索字符串

转载 作者:行者123 更新时间:2023-12-05 00:30:52 25 4
gpt4 key购买 nike

在 Powershell 中,您将如何在文本文件中的每一行中搜索一组模式? Select-string 的模式可以接受一个数组,但如果找到数组中的任何字符串,它就会返回一个真值。如果在行中找到数组中的所有字符串,我需要它返回 true(或实际上是行)。谢谢。

最佳答案

为了将字符串数组与模式数组匹配,我相信您需要这样的东西:

$patterns = @( ... )

Get-Content sample.txt | % {
$count = 0
foreach ($p in $patterns) {
if ($_ -match $p) { $count++ }
}
if ($count -eq $patterns.Length) { $_ }
}

或者像这样:
$patterns = @( ... )

$content = Get-Content sample.txt
foreach ( $line in $content ) {
$count = @($patterns | ? { $line -match $_ }).Length
if ( $count -eq $patterns.Length ) { $line }
}

关于string - 用于模式数组的 Powershell 搜索字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15726184/

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