Regex to replace upper case with lower case in UltraEdit

Regex in UltraEdit to replace someStringWithCamelCase with "some string with camel case".

This is using regex to find upper case characters and replace them with lower case by finding ([A-Z]) and replacing with \L\1\E.

Thanks to this StackOverflow post: Convert a char to upper case using regular expressions (EditPad Pro).

Popular Posts