Workin it...
Question though:
Is the function result referenceable in the replace field?
If I enter the find field with a normal search and use the regex function (as below) the function works, replacing the grouped section with the function result.
Code:
<h2>SUPER DUPER</h2>
returns
<h2>Super Duper</h2>
However, if I try and add any string before or after it in the replace field it simply treats the function as a string.
Code:
<h2>SUPER DUPER</h2>
returns
<h3>\F<titlecase_ignore_tags></h3>
Is there a way to treat the returned value like a normal \1 in the replace field so we can adjust the string around the function result?
Something like:
Code:
Replace: <h3>\1:F<titlecase_ignore_tags></h3>
to achieve
<h3>Super Duper</h3>