Quote:
Originally Posted by tarisea
For the life of me I can't figure out how to do these 2 searches.
1. How would I search for </p> where the is NOT a . before it?
The the first line would come up but the second one wouldn't.
<p class="calibre11">But that didn’t mean he wanted to turn out</p>
<p class="calibre11"> the lights and go to sleep either.</p>
2. Same problem different version. How would I search for </p> where it is followed by a character [a-z] instead of a <
<p class="calibre11">But that didn’t mean he wanted to turn out</p>
the lights and go to sleep either.</p>
Any help would be greatly appreciated.
TTRS
|
([a-z,"])</p>\s+<p class=calibre\d+">([a-z])
searches for lowercase or comma or straight quote
\1 \2
This will miss
some words that start with a capital: eg Martha or a quote.