Search: <span style="font-size:80%;">(.*?)</span>
Replace: <span style="font-size:80%;">\U\1\E</span>
Can I also add a recommendation that you try and avoid inline styles whenever possible. I would recommend using classes and css stylesheets like this:
<span class="upper">Sample Text</span>
with CSS:
span.upper {text-transform:uppercase; font:size:.8em}
There are lots of benefits to using stylesheets over inline styles!
Cheers,
Last edited by Turtle91; 04-13-2017 at 12:32 PM.
|