gpt4 book ai didi

regex - 使用-replace过滤

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

我正在努力让自己了解-replace。有谁能够帮助我?

作为练习,我试图简单地过滤:

@{processName=chrome}

以便 chrome返回到我想将其输出到的列表框。

到目前为止,我有:
$processnames = Get-Process | select ProcessName | -replace '^@{processname=',''

我知道我做错了什么,有人可以指出正确的方向并解释为什么吗?

最佳答案

尝试使用它来获得没有最终}的进程名称:

$Processnames = Get-Process | Select ProcessName | foreach { $_ -replace '^@{processname=(.*)}' , '$1' }

关于regex - 使用-replace过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10374809/

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