Jan 23, 2021 01:07 AM
Hi there,
unfortunately, I have not yet found an answer to my question in this forum so I am asking myself. I have a single line text cell which is always structured similarly to the following:
Brand Name Product Name (Color / Color / Color)
I would like to extract only the portion in between the brackets into another cell. Meaning my output would be
Color / Color / Color
Unfortunately, the number of characters before the first bracket and within the brackets will vary. That is my main concern and why I have not yet found a good formula to fix this.
Any help is very much appreciated. Thanks in advance!
Solved! Go to Solution.
Jan 23, 2021 05:09 AM
Hi @Jaap_Terheggen, and welcome to the community!
Like this?
Solution:
REGEX_EXTRACT({RegEx Examples}, '\\((.*?)\\)')
Jan 23, 2021 05:09 AM
Hi @Jaap_Terheggen, and welcome to the community!
Like this?
Solution:
REGEX_EXTRACT({RegEx Examples}, '\\((.*?)\\)')
Jan 23, 2021 05:39 AM
Yes, this is exactly it. Thank you so much.