I would like to write a perl regex to replace some pattern to other pattern. The source pattern is lowercase followed by uppercase. The destination pattern is the lowercase followed by dot, space and the uppercase.
Here is an example:
CamelCase
I want to change it to the following:
Camel. Case
Thanks in advance!