Hi all,
I would like to replace new lines with "<BR>" in a text file. I'm executing the following line in Powershell:
[regex]::Replace((Get-Content "testfile.txt"), "\.``n", ".<BR>", "Singleline")
The contents of testfile.txt:
Some text here for paragraph one.
More text for paragraph two.