Alteryx Designer Desktop Discussions

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

How to extract word in between specific words

RamyaGunasekaran
7 - Meteor

Example I have,

 

\\abcd123\aa\bb\cc\zip\folder1

\\abcd321\dd\zip\foldername1\gg

\\abdc213\aa\bb\cc\dd\zip\folder3\ee\ff

 

I want folder names as output like

folder1

foldername1

folder3

 

Help on this!!

10 REPLIES 10
atcodedog05
22 - Nova
22 - Nova

Hi @RamyaGunasekaran 

 

You can regex like below.

 

 

(:?zip|Bias)\\([^\\]+)\\?

 

Workflow:

atcodedog05_0-1627476404767.png

 

Hope this helps : )

 

Labels