Upper case after symbols: . - ( [

QUOTE (Rayearth @ Oct 20 2012, 10:02) <{POST_SNAPBACK}>
I need to add an action to start with upper case after any of the symbols below.
. (dot)
     -
     (
     [<!--QuoteEnd--></div><!--QuoteEEnd-->

Try this RegExp Help

It does it after the symbols:

(

[
"
'

So by changing a few thing around to suit you: Action #1 Actiontype 4: Replace with regular expression Field ______________: _TAG Regular expression _: (\B|^)(-|\(|\[|\.)(.) Replace matches with: $1$2$upper($3)