how to make couple words of the same line sentence to new line
-
Hi
I have a question, i have many lines like below, how to make http to be in new line
myshareddrive http://xx.xx.xx
mysharedrive2 http://xx.xx.xx -
find:
.(?=http://)
replace:\r\n
mark regular expressionIf you want to know more about regular expression search see here.
-
or
find: http:
replace: \n$0