Given test.txt containing:
test message
I want to end up with:
testing a message
I think the fol
You can use "\\r\\n" also for the new line in powershell. I have used this in servicenow tool.
"\\r\\n"
powershell
In my case "\r\n" s not working so i tried "\\r\\n" as "\" this symbol work as escape character in powershell.
"\r\n"
"\"