删除关键字后的所有内容

时间:2018-08-17 15:12:32

标签: powershell ini compareobject

我尝试使用Compare-Object合并到文件,并且得到了这样的文件:

Number=5
Example=4
Track=1000
Date=07/08/2018 19:51:16
MatCaissierePDAAssoc=
NomImpPDAAssoc=
TpeForceLectPan=0
Number=1
Example=1
Track=0
Date=01/01/1999

您可以看到它以Number = 1重复。除非具有不同的值。 我想删除关键字“ Number”和关键字本身之后的所有内容(所有内容不仅表示“ = 1”)。

这是我到目前为止所做的:

$files = Get-ChildItem "D:\all"
foreach ($file in $files) {
    $name = dir $file.FullName | select -ExpandProperty Name

    Compare-Object -ReferenceObject (Get-Content D:\original\test.ini) -DifferenceObject (Get-Content $file.FullName) -PassThru |
        Out-File ('D:\output\' + $name)
}

我想删除所有带有“跟踪”和“日期”的行。

我的结果应如下所示:

Number=5
Example=4
MatCaissierePDAAssoc=
NomImpPDAAssoc=
TpeForceLectPan=0

事实上,我需要删除文件中的双键。

1 个答案:

答案 0 :(得分:1)

这可能会有所帮助:

# read existing file
$fileContent = Get-Content C:\tmp\so01.txt

# iterate over lines
foreach($line in $fileContent) {
  # filter lines beginning with 'Track' or 'Number'
  if((-not $line.StartsWith('Track')) -and (-not $line.StartsWith('Number'))) {
    # output lines to new file
    $line | Add-Content C:\tmp\so02.txt
  }
}

C:\tmp\so02.txt的内容:

Example=4
Date=07/08/2018 19:51:16
MatCaissierePDAAssoc=
NomImpPDAAssoc=
TpeForceLectPan=0
Example=1
Date=01/01/1999