According to Allan Odgaard:
What are the suggestions for syntax?
I'd suggest do ing it the Perl way:
\l lowercase next char (think vi) \u uppercase next char (think vi) \L lowercase till \E (think vi) \U uppercase till \E (think vi) \E end case modification (think vi)
Find: <(BODY|TABLE)> Replace: <\L$1\E>
will lowercase all BODY/TABLE words inside <>.