Important Community update: The process for changing your account details was updated on June 25th. Learn how this impacts your Community experience and the actions we suggest you take to secure your account here.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Parsing Name from Email Line

wonka1234
10 - Fireball

Hi,

 

How can I parse this column from:

 

Name
Louis Stevens <Louis.Stevens@hotmail.com>; Ren Stevens <Ren.Stevens@hotmail.com>

 

to:

 

Name
Louis.Stevens@hotmail.com; Ren.Stevens@hotmail.com
9 REPLIES 9
Felipe_Ribeir0
16 - Nebula

-

 

 

ShankerV
17 - Castor

Hi @Felipe_Ribeir0 

 

Good trick learned from you Felipe. We can edit the reply when ever we need.

Thanks for the contribution to the community. I read all your replies and those are very helpful.

 

ShankerV_0-1672244811732.png

 

Felipe_Ribeir0
16 - Nebula

Hi @wonka1234 

 

One way of doing this

 

Felipe_Ribeir0_0-1672244900580.png

 

Felipe_Ribeir0
16 - Nebula

Hi @ShankerV 

 

Its necessary when you realise that your answer was wrong. I am learning so much with you too!

Hi @wonka1234 

 

This is how I approached it to make sure it works if multiple emails are included. Cheers!

christine_assaad_0-1672245265479.png

 

ShankerV
17 - Castor

Hi @wonka1234 

 

One way of doing this.

 

ShankerV_0-1672245374336.png

 

Many thanks

Shanker V

ShankerV
17 - Castor

@Felipe_Ribeir0 

 

Found this information now, thought of sharing to you also.

 

---Quote---

Thanks for the feedback! You actually do have the ability to edit your own post up to 48 hours after you've posted. 

---Unquote---

https://community.alteryx.com/t5/Alteryx-Community-Ideas/Delete-reply-or-post-from-community/idi-p/7...

 

Many thanks

Shanker V

flying008
14 - Magnetar

Hi, @wonka1234 

 

There is a lively way to get your all mailbox, 

1- RegEx to extract all mail address in < >.

 

(?<=<)[\w.@]+?(?=>)

 

2- Formula to added ";" between mailbox.

 

REGEX_Replace([Name], "(@[a-z]+?.com)(?=[[:alpha:]])", "$1;")

 

 

3- If you have many people's email in a line, it will can excellence process mission.

录制_2022_12_29_14_15_55_54.gif

 

******

If it can help you get your want output, please mark it as s solution and give a like for share more.

 

EN6924
10 - Fireball

One way to do this -

 

EN6924_0-1672319405254.png

 

Labels