Find:
<span class="English" lang="en-US" xml:lang="en-US"><page(\d*)>
replace:
<span epub:type="pagebreak" id="page$1" title="$1"></span>
the results that I got from vs code editor is this:
<span epub:type="pagebreak" id="page6" title="6"></span>
(which is my attempt)
but for some reason the saved searches panel in sigil give the same result which is:
<span epub:type="pagebreak" id="page$1" title="$1"></span>
but any regex code work fine in it like .*? but not $1 for some reason.
|