regular expression used to conver to upper case

F

Franky

This should be easy to find but I've been looking and looking at the doc and
can't find it. Maybe it can't be done.

In the IDE editors find/replace I want to use regular expression to change
the first letter after "Dim " to lower case.

e.g Dim Tmp to Dim tmp

can you show me the replace string.

I believe the Find string is: Dim {[a-z]}

correct?

and the replace string is someting like

Dim \1

which changes nothing so it needs someting after the \1 to cause the
conversion to upper case.


Thanks
 
F

Franky

try what?

I have tried various things. Seems I saw < someplace means upper case in a
different OS but it didn't work for me.



Cor Ligthert said:
Franky,

Why don't you try it?

Cor

Franky said:
This should be easy to find but I've been looking and looking at the doc
and can't find it. Maybe it can't be done.

In the IDE editors find/replace I want to use regular expression to
change the first letter after "Dim " to lower case.

e.g Dim Tmp to Dim tmp

can you show me the replace string.

I believe the Find string is: Dim {[a-z]}

correct?

and the replace string is someting like

Dim \1

which changes nothing so it needs someting after the \1 to cause the
conversion to upper case.


Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top