作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我添加了一个排除项,但语法不起作用:
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/
我是一名优秀的程序员,十分优秀!