Alteryx Designer Desktop Discussions

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

Parse value in a paragraph

mzsweetumz
8 - Asteroid

Happy Friday all !

 

I am trying to parse out the name of companies listed in a response (sentence, paragraph) :

 

Current:

TiffanyLy27_0-1653085629647.png

 

Output:

EntityName: ImmuneSys, Argon Medical Systems Inc, Sirtex Medical Corp, AstrZeneca

 

 

I want to parse the name by 'EntityName' in the paragraph above into one row separated by commas as shown in the output.

 

Any assistance is appreciated!!

 

Thank you!

 

 

2 REPLIES 2
IraWatt
17 - Castor
17 - Castor

Hey @mzsweetumz,

This setup seems to work:

IraWatt_0-1653090641778.png

Regex:

EntitName \|( [^,]+)

Please ask if any questions.

HTH,

Ira

binuacs
20 - Arcturus

@mzsweetumz Another way of doing this 

 

EntityName \| (.+?),

binuacs_0-1653122937505.png

 

Labels