Let's suppose I have a directory that contains file like this
file - text text text again.
I'd like to capitalize the first letter after the hyphen to obtain
file - Text text text again.
In the field match i wrote ([a-z]*) - ([a-z]+*)
and in the field replace \1 - \2
but how can i capitalize the first letter of \2.
Thanks in advance and sorry for my english.
