Regex to change to sentence case June 4, 2023 by Tarik Find: (. )([A-Z])(.+) Replace: \1\U\2\L\3 In Notepad++ 6.0 or better (which comes with built-in PCRE support).