Trouble using Find/Replace with a regex

151 Views Asked by At

I have the below sample text

in front xxxx extra xxxx

that I am trying to convert so "http" starts on a new line:

in front
xxxx
xxxx

I am using TEXTPAD with regular expressions checked in the FIND/REPLACE window.

I have tried using the /n command, but all it does is add the /n to the from of xxxx in the original line.

How do I use FIND/REPLACE with regular expressions to do what I want?

1

There are 1 best solutions below

0
On

You have your syntax confused and backwards. A newline sequence is \n not "/n" ...