Quote:
Originally Posted by michaelbr
Hi Tex2002ans, thanks so much for your detailed explanation, that's exactly what I'm trying to do,
|
Glad to see I guessed correctly.
Quote:
Originally Posted by michaelbr
I used your solution Regex #2 (partially, searching for small letters at the end), but yours is much better, I'll use yours instead.
|
If you're looking for lowercase letters at the end, you could also use something like this:
Search: ([a-z])</p>\s+<p>
Replace: \1 <---- Make sure you put a space after.
Code:
<p>This is an example</p>
<p>sentence. But THIS LINE</p>
<p>won't match.</p>
but I think my Regexes are better. :P