1
我有一個文件。我需要選擇一些連續絃,加入他們的行列,並把它們在文件中的位置的第一選擇字符串的PowerShell腳本Powershell。如何在文件中的一個字符串中連接兩個單獨的連續字符串?
我嘗試:
$test=cat $file |select-string -pattern '<DIV>$' -Context 0,1|%{$_ -split "\r\n"}
$t= -join ($test[0],$test[1])
cat $file|%{$_ -replace '$test','$t'} > temp.txt
或本
cat $file | %{$_ -replace '<DIV>[\u000d\u000a]{0,2}',""}>temp.txt
但失敗
請從文件中發佈樣本輸入數據以顯示您正在搜索的內容。 –