Parsing Multiple Acronyms from a field
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
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!
Solved! Go to Solution.
- Labels:
- Regex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Switch your output method to Tokenize.  
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can do it dynamically by using the following configuration:
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)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
This worked. Thank you for your responses.
