([A-Z])([A-Z]{2,})
and replace with:
\1\L\2
([A-Z]) matches a letter in this range and remembers it as "\1" (the first set of parentheses). That's the first letter of a word, but we need at least 2 more, so...
([A-Z]{2,}) matches at least two occurrences of a letter in this range (no upper limit is specified), and remembers them as "\2" (because it's the second set of parentheses in the pattern).
In the replacement pattern, \1 tells TW to use that text just the way it is.
\L\2 tells TW to make whatever's in \2 lowercase. (If we used a lowercase L, it would make only the first character of \2 lowercase, like this: BaNNER.)
- TH
Kalamazoo, Mich.