Hello, I am trying to isolate email addresses from an Information column in a Dataset. A sample of the data from the column would be something like 'someone's name [email@email.com]'
I don't necessarily need the name part, but I do need the Email Addresses, which are always bracketed in this column by '[]'.
I am using a Split Column tile in Magic ETL, and in the Choose Delimiter to Split On section I have 'Custom' selected and using the following REGEX code that I'm sure is wrong:
REGEX_EXTRACT([Information], "\[(.*?)\]", 0)
The code compiles, but the newly created column is copying all the text from the Information column (Column that's being split) exactly.
Any ideas how I can only grab the email address that's inside the brackets? I'm sure I'm missing something.
Thank you!