We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

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

Acronyms in cells

jenettd
7 - Meteor

Is there a way to pick out the spelled-out version of acronyms in a cell?

 

For instance, the below sentences are in one cell.

 

'Bob is a great salesman because he Always Be Closing (ABC). He has a brilliant future in sales.'

 

I would need Alteryx to see that 'Always Be Closing' is spelled out for the acronym 'ABC'. The acronyms will always be in parentheses and the spelled-out version should always precede the acronym in parentheses.

 

Thanks!

13 REPLIES 13
OTrieger
14 - Magnetar

@jenettd 
Will the spelled out will always start with Capital Letter?

jenettd
7 - Meteor

Yes, the spelled out will always start with a capital letter.

OTrieger
14 - Magnetar

@jenettd 
\u\l+\s\u\l+\s.*\s\(\<\w+\>\)

This will give you the spell out and acronym, then you can get rid of the acronym

OTrieger
14 - Magnetar

(\u\l+\s\u\l+\s.*)\s\(\<\w+\>\)

Without the acronym

OTrieger
14 - Magnetar

When using parenthesis you can define what you would like to be tokenize our of the whole code 

reggg.PNG

jenettd
7 - Meteor

Thank you. Would I put this formula in the Regex parse tool?

OTrieger
14 - Magnetar

yes

jenettd
7 - Meteor

This worked great; however, I noticed it isn't working where the acronyms have 2 characters, such as Accounting Unit (AU). It worked great on the 3-character acronyms but the 2 character ones aren't pulling. Would you mind incorporating the fix for 2 character acronyms as well? If the formula is separate from the 3 character one, that's fine too. I appreciate your help. 

OTrieger
14 - Magnetar

@jenettd 
Ok I deleted one \s, which indicating space

(\u\l+\s\u\l+\s.*)\(\<\w+\>\)

 

The reason that it did not work was that if there are only 2 Words then it was looking for \s\s, double space. Is it possible to have an Acronym of one word?

Labels
Top Solution Authors