Hello Make Community,
I’ve been working on a problem and I’m hoping for your guidance. I’m trying to parse an email address in such a way that I only keep the domain name, including the top-level domain.
The input will be [name]@domain.com and the result should be domain.com
Here’s what I’ve been attempting:
split(Email; "@")[1]
The idea is to split the email address at the ‘@’ character and then select the second part, which should be the domain name. However, I’m encountering a problem with the “[1]” part of the function. It appears that the function is returning both parts of the string, rather than just the part after the ‘@’ character.
Right now I am getting the result : [name], domain.com[1]
Thank you in advance for your help.
Best Regards,
Marc