Question
Find and Replace using Regex - change $1 Result to uppercase?
Hi,
I am doing a regex search:
//\s+([a-zA-Z])To find all lines that match this:
// test
// another test
...
I would like to change the first char to uppercase. I thought I could use the following in the replace:
// \U$1to instruct the $1 result to be upper case but this doesn't work in dreamweaver.
Is there a way of instructing the search and replace dialogue to alter the $ output?
