My datafile has a field with multiple tags that are joined like this:
TagoneTagtwoTagthree
Is there a formula possible, with help of regex, to put a comma between all lowercaseUppercase instances to seperate them?
My datafile has a field with multiple tags that are joined like this:
TagoneTagtwoTagthree
Is there a formula possible, with help of regex, to put a comma between all lowercaseUppercase instances to seperate them?
Best answer by Kamille_Parks11
Yep.
REGEX_REPLACE(Tags, "([a-z])([A-Z])", "$1,$2" )
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.