Quote:
Originally Posted by Paxman53
Does anyone know a regex code that will close a broken quote.
|
Yup, this one will work with your sample:
Code:
(<p class="calibre6">‘.+?)</p>\s+?<p class="calibre6">(.+?’</p>)
Replace with "\1 \2"
As stated above, this should be used with caution in step by step mode. (Mode: regex dotall)