Page 1 of 1
Find/Replace a Carriage Return
Posted: Mon Oct 15, 2001 8:15 pm
by Morgan Erickson
I need to find all the "END" in a text file and replace it with "END" and a carriage return so the next line appears on a new line in the text document...
How can I do that?
Re: Find/Replace a Carriage Return
Posted: Tue Oct 16, 2001 4:13 am
by Murray Tyler
In the Replace dialog box
Find what: END
Replace with: END\n
Make sure that the regular expression tickbox is checked on (and the match case if that is important) and let rip.
Regards
Murray
Re: Find/Replace a Carriage Return
Posted: Tue Oct 16, 2001 11:40 am
by Morgan Erickson
Thank you!! That worked great!