Extract domain from email address using regex
What's the correct syntax for pulling out the domain from an email address?
-
Official comment
Here's one way to extract the email from a column titled "Email":
SUBSTR(#Email;INDEX(#Email;"@")+1)In summary, it looks for the "@" character and then takes all the characters in the string after that.
Comment actions
Please sign in to leave a comment.
Comments
1 comment