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

Using ReGex_Match to find multiple words, stream lined formula?

LAS1
7 - Meteor

Hello Alteryx

 

I am using the Regex formula below to search for specific words in a column (Example the word Armor), The downside is im looking for about 100 different individual words. Is there an efficient way to use the formula below, or do I need to replace the word Armor with the new word 100 different times?

 

IF (REGEX_Match([Title], ".*\<Armor\>.*")) then 2

ELSE 0

ENDIF

 

Hope this helps.

Giuseppe

1 REPLY 1
atcodedog05
22 - Nova
22 - Nova

Hi @LAS1 

 

You can find and replace for this scenario. Here is how you can do it.

Workflow:

atcodedog05_0-1632828454186.png

 

Hope this helps : )

Labels
Top Solution Authors