gpt4 book ai didi

powershell - 在一个文件上运行两次替换

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

我有以下代码:

    if(Test-Path $filename ) {
# Remove quotes (")
(get-content $filename) -replace('"','') | Out-File $filename -Force
$allText = [IO.File]::ReadAllText("$filename") -replace "`r`n?", "`n"
$encoding = New-Object System.Text.ASCIIEncoding
[IO.File]::WriteAllText("$filename", $allText, $encoding)
}

但是我认为做两个替换有点儿废话。有办法将两者结合吗?

最佳答案

这对您有用吗?

if(Test-Path $filename ) {
$allText = ([IO.File]::ReadAllText("$filename") -replace "`r`n?", "`n") -replace '"',''
$encoding = New-Object System.Text.ASCIIEncoding
[IO.File]::WriteAllText("$filename", $allText, $encoding)

}

关于powershell - 在一个文件上运行两次替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9139448/

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