Convert Lower case to Upper case
Posted: Wed Oct 01, 2008 4:10 pm
Say I have the sample text:
--------------------------------
This is a test - test 1
This is another test - test 23
a;sdlkfjas;dfklj -dadfas
afsdkwoiu;u;k - Test 4
--------------------------------
I want to find: -\s+([a-z])
There will be three matches with case sensitivity turned on.
I want to replace back reference $1 with its upper case version. Is this possible?
Cheers,
Troy
--------------------------------
This is a test - test 1
This is another test - test 23
a;sdlkfjas;dfklj -dadfas
afsdkwoiu;u;k - Test 4
--------------------------------
I want to find: -\s+([a-z])
There will be three matches with case sensitivity turned on.
I want to replace back reference $1 with its upper case version. Is this possible?
Cheers,
Troy