Quote:
Originally Posted by Buchstabensalat
1. neWbie or nEwBie -> newbie
|
Find:
([[:alpha:]]+)
Replace:
\L\1\E
Quote:
Originally Posted by Buchstabensalat
2. NeWbie or NEwBie -> Newbie
|
Find:
([[:upper:]])([[:alpha:]]+)
Replace:
\1\L\2\E
Note that these expressions will also find some non-mixed case words and won't work with accented characters and umlauts.
You can find more examples
here.