gpt4 book ai didi

powershell - 如何在Powershell的一条语句中使用-replace两次

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

我试图两次在Powershell中使用-replace函数,但是我能做到这一点的唯一方法是使用以下代码:

$data = Get-Content c:\test.txt
$data -replace 'A','apple' | Out-File c:\newtest.txt
$data = Get-Content c:\newtest.txt
$data -replace 'B','blue' | Out-File c:\newtest2.txt

我相信应该有一种方法可以合并第2行和第4行,以便只能使用newtest.txt而不是在newtest2.txt中具有正确的输出。

最佳答案

使用括号:

((Get-Content c:\test.txt) -replace 'A','apple') -replace 'B','blue' | Out-File c:\newtest2.txt

如果您愿意,也可以这样做。没有理由不能两次使用 -replace运算符。
$data = Get-Content c:\test.txt
$data -replace 'A','apple' -replace "B","Blue" | Out-File c:\newtest.txt

关于powershell - 如何在Powershell的一条语句中使用-replace两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49117681/

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