Join the Inspire AMA with Joshua Burkhow, March 31-April 4. Ask, share, and connect with the Alteryx community!

Alteryx Designer Desktop Discussions

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

Parsing Multiple Acronyms from a field

jenettd
7 - Meteor

Hi,

 

I'm trying to parse multiple acronyms from a field.

 

For instance, "I want to parse ABC and XYZ from the field" - how do I parse ABC and XYZ from the column and place it in a new column? I'm using the Regex tool, which this expression - ([A-Z]{2,}) ;however, it is only extracting ABC and not XYZ.

 

Thanks!

 

 

 

 

 

 

 

 

 

3 REPLIES 3
Aaron_Foster
6 - Meteoroid

Switch your output method to Tokenize. â€ƒ

regex-tokenize.png

GMG0241
7 - Meteor

You can do it dynamically by using the following configuration:

Screenshot 2025-03-27 162602.pngScreenshot 2025-03-27 162620.png

 

where $& means 'everything that matches' and I've added a , to separate the strings. You can also do it the way highlighted by @Aaron_Foster  above, but instead split to rows, and then use the data that way, (e.g. summarize tool + concatenation)

jenettd
7 - Meteor

This worked. Thank you for your responses.

Labels
Top Solution Authors