We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Using RegEx for spacing

Eva_A_Garcia
5 - Atom

I trying to split a column that has the following:

 

Joe Public joe.q.public@zoo.com 

 

I need to be able to split name and email (mainly the email address).

 

Any help is appreciated; thanks!

2 REPLIES 2
fmvizcaino
17 - Castor
17 - Castor

Hi @Eva_A_Garcia ,

 

Here is an expression that solves your issue. (.*?)\s([^\s]+@.*)

I've used the parse method from the regex tool

fmvizcaino_0-1589405138186.png

 

 

Best,

Fernando Vizcaino

Eva_A_Garcia
5 - Atom

Thank you Fernando that worked perfectly. I do appreciate your quick response.

Labels
Top Solution Authors