Hi there! The following REGEX should work:
REGEX_EXTRACT([YOUR TEXT FIELD], "([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+)")
Let me know is that solves it!
Hi there! The following REGEX should work:
REGEX_EXTRACT([YOUR TEXT FIELD], "([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\\.[a-zA-Z0-9_-]+)")
Let me know is that solves it!
Hi !
thanks for the answer is gets mails but it ignores the "From : " Tag so I got anomalies and mails I don’t want

.(#ERRORS are empty fields so it’s OK)
Hi !
thanks for the answer is gets mails but it ignores the "From : " Tag so I got anomalies and mails I don’t want

.(#ERRORS are empty fields so it’s OK)
Sorry, this should match all From: email@email.com:
REGEX_EXTRACT({Formula 2}, "(,From:+\\s]+\a-zA-Z0-9._-]+@-a-zA-Z0-9._-]+\\.+a-zA-Z0-9_-]+)")
Thank you I’ll look at it today But I think there will be an issue because of the space after “From” and “:”
I have managed to do something similar with
IF(FIND("From : ", {table})>0,REGEX_EXTRACT(RIGHT(table, LEN(table)-FIND("From : ", {table})-4), "(ea-zA-Z0-9._-]+@Za-zA-Z0-9._-]+\\.-a-zA-Z0-9_-]+)"), "")