我有一个文件。我需要选择一些连续的字符串,加入它们并将它们放在文件中,放在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
但失败