Quote:
Originally Posted by Tex2002ans
Glad to see I guessed correctly.
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
|
Yes, certainly, yours are much better, thanks for sharing.