Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

Split string using regex, help please

ShaneWang2018
6 - Meteoroid

Hi, 

 

I have a long string contain various values and I only need 2 key value listed below.

 

MailID=8466609a-57e8-45d7-b831-734f9217b3bb&=test@sample.com&

 

Expected Outcome to be in two columns 

MailIDEmai
8466609a-57e8-45d7-b831-734f9217b3bbtest@sample.com

 

Do I need to use text to column and regex?

 

Many thanks

1 REPLY 1
jamielaird
14 - Magnetar

Hi @ShaneWang2018,

 

RegEx is your friend here:

 

MailID=(.*)&=(.*)&

regex.png

Labels
Top Solution Authors