Parse an email address

  • Thread starter Thread starter Michael Connolly
  • Start date Start date
M

Michael Connolly

Hi,
I need to parse a email address to get the url.

Given a cell containing:
(e-mail address removed)

I need to extract:
reallycoolurl.com

Any help is GREATLY appreciated.
Thanks
MJC
 
Assuming your domains are shorter than 200 characters:

=MID(E10,FIND("@",E10),200)

Dave
 
If you want to strip out the @ sign,
=REPLACE(MID(E10,FIND("@",E10),200),1,1,"")

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top