fenrisW0lf:
--------------------------------------------------------------------------------
...
Now I want to convert the first back reference to upper case. 
...

--------------------------------------------------------------------------------


You may try my simple javascript addon for PSPad for this task:
http://www.vbr.wz.cz/pspad/poor-man-s-REplace.html
Here you can use an function in the RE replacement;
e.g. using the pattern:

/([a-z])([0-9]+)([a-z])/g, function(match, paren1, paren2, paren3){ return
paren1.toUpperCase() + paren2 + paren3;}

you can replace
a12a b345b c87c d98d q654q v123v g546g
to
A12a B345b C87c D98d Q654q V123v G546g

However, there are some limitations which may cause problems, hence test it on a
backed up data :-).

-- 
<http://forum.pspad.com/read.php?2,47778,47791>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem