I've created an Regex expression with regex101.com.
This expression separate the different components of a ModuleFullPath (crew list runner) into different columns.
The regex I created is as follows I created 6 groups
\\\\([A-z0-9$]+)\\([A-z0-9]+)\\([A-z0-9]+)\\([A-z0-9]+)\\([A-z0-9]+)\\([A-z0-9]+)
The ModuleFullPath consist of the following:
\\(server)\(topfolder)\(subfolder-1)\(subfolder-2)\(Altery main folder)\(Alteryx subfolder-1)\(Alteryx subfolder-2)\(optional-subfolder)\(Workflow).yxmd
I want to extract only the Alteryx subfolder-2. in my case this is always the 5th group.
What i don't understand is why this works on regex101 but not in Alteryx. That should be the same?
Note I know that this can also be done with the split to columns tool and put the \ as separator but i want to practice my Regex skills.