Quote:
Originally Posted by roger64
I would like to go from
Code:
<span class="smcpIncise">SMITH</span>
to
Code:
<span class="smcpIncise">Smith</span>
|
That's relatively easy with Sigil.
In Regex mode, search for:
Code:
<span class="smcpIncise">([[:upper:]])([[:upper:]]{2,})</span>
and replace with:
Code:
<span class="smcpIncise">\1\L\2\E</span>
For more examples see this very
old post.