That doesn't look like the regex in the support page you cite. It also doesn't look like an Airtable RE2 regex pattern because it ends in /g.
That doesn't look like the regex in the support page you cite. It also doesn't look like an Airtable RE2 regex pattern because it ends in /g.
You are right. it was another Regex I tried.
tried also the one in the link, still didn't work("(\W|^)[\w.\\-]{0,25}@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}(\W|$)")
This is the example that appears in the link:
REGEX\_MATCH( {Email address}, "(\W|^)[\w.\\-]{0,25}@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}(\W|$)")
Their example has a typo in it, which you should report to Airtable using the thumbs down button at the bottom of the article.
Here is the working formula:
REGEX_MATCH( {Email address}, "(\W|^)[\w.\\-]{0,25}@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}(\W|$)")
It works just fine for me.
What is your field type? Is it a lookup field? If so, you will need to convert it to a text string.
Can you include screen shots?
Thank you guys!
It worked. Found other typoes in my formula, and after implementing the formula @ScottWorld sent, it worked perfectly.