This finds the boundaries of words in a camel case string.
Why would you want to do that? lol no idea but itβs good practice π
(?<=[a-z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])
CamelCase ThisIsTest ThisIsATest