Powershell ver 4. Windows 7
I wanted to replace ,
with new lines in a text file. I tried the script below
(Get-Content C:\Test\test.txt).Replace(',','`n') | Set-Content C:\Test\testv2.txt
but when I see the output file I see ,
replaced with '`n' instead of new line.
I also tried double quotes instead of single.
Replace(',',"`n")
Try this:
[IO.File]::ReadAllText(C:\Test\test.txt) -replace ',',"`r`n" | Out-File C:\Test\testv2.txt
P.S. Sorry that don't have time to explain it, now.
This worked for me.
(Get-Content C:\Test\Test.txt) -replace ',',"`n" | Set-Content C:\Test\Test.txt -Force
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With