Help

Re: Regex to split string into comma-separated tags

Solved
Jump to Solution
1199 0
cancel
Showing results for 
Search instead for 
Did you mean: 
J_W1
6 - Interface Innovator
6 - Interface Innovator

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?

1 Solution

Accepted Solutions
Kamille_Parks
16 - Uranus
16 - Uranus

Yep.

REGEX_REPLACE(Tags, "([a-z])([A-Z])", "$1,$2" )

See Solution in Thread

4 Replies 4
Kamille_Parks
16 - Uranus
16 - Uranus

Yep.

REGEX_REPLACE(Tags, "([a-z])([A-Z])", "$1,$2" )

@Kamille_Parks If you don’t mind, what you point me to a support article in which the use of variables ($1/$2 in your case for the capture groups) is described? I tried to find it just now and couldn’t… Thank you!

its not really documented, just noted that putting parentheses around a portion of a query creates a “numbered capturing group”. from there its extrapolating the relative order of each group you create preceded by a $

Thank you! (just adding characters to reach 20 characters… ;))