以下は、「data6.xml」のすべての改行とタブを削除するための私のpowershellコードですが、まったく機能しませんでした!
function Replace-String($find, $replace)
{
(Get-Content C:/Temp/data6.xml) |
Foreach-Object {$_ -replace $find, $replace} |
Set-Content C:/Temp/data6.xml
}
# to remove the [CDATA] tag
Replace-String "\<!\[CDATA\[" ""
Replace-String "\]\]\>" ""
Replace-String "\n" ""
Replace-String "`n" ""
Replace-String "`t" ""
Replace-String "\n" ""