Page 1 of 1

Changing words from upper case to lower case

Posted: Mon Apr 04, 2005 11:35 am
by pelletic
Is it possible to use Advance Find and Replace to find a word using regular expression and then change the case of a word?

ex:
SCREEN TRS023.PROG

result string:
SCREEN trs023.PROG

Posted: Mon Apr 04, 2005 12:39 pm
by Abacre
We are working on it right now. It may be ready at the end of this week.

Posted: Mon Apr 04, 2005 5:32 pm
by Abacre
Hi,

Ok, we implemented the feature.

Please download the latest version of the program:
http://www.abacre.com/download/afrexe.zip

This is only updated EXE file. You need to extract executable file from
zip archive into folder where the program is installed. So you will
replace old executable file by this new one.

Start the program. In main menu Action - Options - Batch replace:
check ON modifier E (which means evaluate text in <%==%>).

Then go to Batch replace tab of the main window
and put into
Search for:
SCREEN (\w+).PROG

Replace with:
SCREEN <%=Lower("$1")=%>.PROG

That's all. I verified and it perfectly works.

Tell me does it work now?