Alteryx Designer Desktop Discussions

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

Another regex question

sdspioeg
5 - Atom

How can I I split a column that contains email addresses, followed by a '.' (period) followed by any combination of digits into two separate columns via regex?

So 

joe@whitehouse.gov.593 to

joe@whitehouse.gov593

 

Sorry to ask but I've been breaking my head over this for the past two hours :(

2 REPLIES 2
joelmiller66
9 - Comet

@sdspioeg Think this should do the trick

 

(.*\@.*)\.(\d+)

joelmiller66_0-1661816873875.png

 

sdspioeg
5 - Atom

Wow. THAT was fast... Thanks much Joel!

Labels