I was having trouble with spaces in between tags, e.g
Code:
<p class="P-P27" id="calibre_pb_3"><span class="S-T">1. Title of chapter</span>*</p>
Notice the space between </span> and </p>.
I just couldn't match the search on this - it just worked till the </span>, it failed when I tried to include the </p>
After some googling, I did this:
Code:
<p class="P-P27" id="calibre_pb_3"><span class="S-T">(.+?)</span>\s</p>
And eventually replaced it with this:
Is this sound?