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

RegEx extract last folder name in the path

kc20
7 - Meteor

I'm trying to figure out regex to extract last folder name in a given path. I would like regex to by dynamic enough to handle inputs with back slash \ or NO back slash. Also, if there any special characters in the folder name it should replace it with ""

Here are possible inputs vs desired outputs

 

InputOutput
C:\PATH\TO\FILE\FILE
C:\PATH\TO\FILEFILE
C:\PATH\PATH
C:\PATHPATH
C:\C
C:C
\\network\something\sblah\what'sup\whatsup
\\network\something\sblah\what'supwhatsup

 

I was able to come up with following regex combined with multiple replace functions

replace(replace(Replace(REGEX_Replace([Field1], '.*\\([^\\]+)\\', '$1'), "'", ""), ":", ""), "\", "")

which gets be close but not exactly what i need, if there is no ending backslash then it adds parent folder name.

 

Appreciate everyone's help!

 
 

 

 

2 REPLIES 2
DataNath
17 - Castor
17 - Castor

Hey @kc20, managed to get this working for your sample data if you'd like to give it a try:

 

Extract last folder name in path.png

 

REGEX_Replace(REGEX_Replace([Input], '.*\\([^\\]+)\\?', '$1'), '\W', '')
kc20
7 - Meteor

@DataNath that's perfect, thank you!

 

Labels
Top Solution Authors