View Single Post
Old 03-02-2018, 12:24 PM   #3
deback
Book E d i t o r
deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.deback ought to be getting tired of karma fortunes by now.
 
Posts: 432
Karma: 288184
Join Date: May 2015
Device: Laptop
Search for this:

([a-z])</p>\s+<p class="whatever">([a-z])

The \s+ in the middle is for the space between the two lines and is necessary to find what you're looking for.

Replace with this:

\1 \2

You might also want to do two searches and drop the ([a-z]) at the end, though, because you'll find there are a lot of lines that need to be connected where the second line doesn't start with a small letter.

Last edited by deback; 03-09-2018 at 07:44 PM.
deback is offline   Reply With Quote