Quote:
Originally Posted by Thom*
You have probably already resolved this, but I simply use:
Search: <span class="calibre5">(.*?)</span>
Replace: \1
Make sure you have selected "regex" for searsh method and that is it.
Now, nested <span> tags could cause a problem, but that is for another discussion.
Best of Luck
|
Code:
<span class="calibre5">([^<>]+)</span>
Is infinitely less potentially destructive than
Code:
<span class="calibre5">(.*?)</span>
precisely
because of nested spans.