Quote:
Originally Posted by MerlinMama
Thanks. I only had about 6 lines to do, so once aware of the problem it was fine. My regex is very similar, once I mark the section of text for it to apply to
Search: </p>\n([a-zA-Z])
Replace: </p>\n<p>\1
Might I ask why you had \s+ in yours? Whenever I try to use it, it never seems to work as I intended...I'm probably misunderstanding what it's for.
|
\s+ will match any of the: space, tab, newline
Sometimes I start the search with (?s) : treat as a single line
I don't worry about inserting a \n as I let 'Pretty' do that neat-it-up at the end