gpt4 book ai didi

powershell - 如何从 Powershell 中已过滤的列表中排除关键字

转载 作者:行者123 更新时间:2023-12-03 18:36:36 24 4
gpt4 key购买 nike

来自 http://sqlblog.com/blogs/john_paul_cook/archive/2011/06/17/nosql-extracting-keywords-from-powerpoint-using-powershell.aspx

我添加了一个排除项,但语法不起作用:

gc "antiinfectiveDrugsLecture.txt" |% {$_.split(" ")} -exclude "the", "this"

最佳答案

没有 -exclude 运算符,但您可以使用 Where-Object cmdlet 和 -notin 获得结果:

gc "antiinfectiveDrugsLecture.txt" |% {$_.split(" ")} | Where-Object {$_ -notin "the", "this"}

或者,如果您更愿意使用 ? 别名作为 Where-Object 的别名来缩短它:

gc "antiinfectiveDrugsLecture.txt" |% {$_.split(" ")} |? {$_ -notin "the", "this"}

关于powershell - 如何从 Powershell 中已过滤的列表中排除关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46289178/

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