Thread: Regex examples
View Single Post
Old 11-19-2014, 02:00 PM   #439
Buchstabensalat
Member
Buchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one handBuchstabensalat can read with one hand
 
Posts: 12
Karma: 79192
Join Date: Nov 2014
Device: Kindle
Quote:
Originally Posted by eschwartz View Post
I would use the following:

Find:
Code:
\b(\p{L})((?:\p{Ll}*\p{Lu})+\p{Ll}*)\b
Replace:
Code:
\1\L\2\E
...
works fine
Buchstabensalat is offline   Reply With Quote