Replace a character with new line
问题 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") 回答1: 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. 回答2: