我想删除一个完整的行,其中包含powershell脚本中单个.csv文件中的特殊单词。
我已找到工作代码,删除特定行,但将所有其他行写入第一行。这不应该发生,因为我将csv文件与ms访问表相关联。
$user = 'User2'
$file = Get-Content c:\datei.txt
$newLine = ""
foreach($line in $file){
if($line -match $User){
}else{
$newLine += $line
}
}
$newLine | Out-File c:\datei.txt
文件看起来像这样,但有更多的数据和行:
User;computer;screen1;screen2;printer
User1;bla;bla;;bla
User2;bla;bla;bla;bla
User3;bla;bla;bla;bla
运行代码后:
User;computer;screen1;screen2;printerUser1;bla;bla;;blaUser3;bla;bla;bla;bla
我在Windows 7上使用Powershell 5.1.x
答案 0 :(得分:2)
这是因为您正在进行字符串连接。
$newLine = ""
$newLine += $line
# result is exactly how it looks,
# "" -> "line1" -> "line1line2" -> "line1line2line3" ...
直接的解决方法是使用数组:
$newLine = @()
$newLine += $line
# result is adding lines to an array
# @() -> @("line1") -> @("line1","line2") -> @("line1","line2","line3") ...
但正确的PowerShell方法根本不是这样做,而是通过代码将文件流式传输到另一个文件中:
$user = 'User2'
$file = Get-Content c:\datei.txt
foreach($line in $file){
if($line -match $User){
}else{
$line # send the line to the output pipeline
}
} | Out-File c:\datei.txt
但您可以将测试-match
反转为-notmatch
并删除空的{}
部分。
$user = 'User2'
$file = Get-Content c:\datei.txt
foreach($line in $file){
if($line -notmatch $User){
$line # send the line to the output pipeline
}
} | Out-File c:\datei.txt
您可以摆脱暂时存储文件内容:
$user = 'User2'
Get-Content c:\datei.txt | ForEach-Object {
if ($_ -notmatch $User){
$line # send the line to the output pipeline
}
} | Out-File c:\datei.txt
但是它只是作为过滤器使用,您可以更改foreach-object / if() {}
过滤器的where-object
:
$user = 'User2'
Get-Content c:\datei.txt | Where-Object {
$_ -notmatch $User
} | Out-File c:\datei.txt
然后更改Out-file
Set-Content
(配对是get-content / set-content,如果需要,它可以更好地控制输出编码):
$user = 'User2'
Get-Content c:\datei.txt |
Where-Object { $_ -notmatch $User } |
Set-Content c:\datei.txt
答案 1 :(得分:0)
您需要添加'换行符'到每行文字的末尾。改变这一行:
$newLine += $line
为:
$newLine += "$line`r`n"