Alteryx Designer Desktop Discussions

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

Parse Everything to the Right of the String "Test"

Link86
8 - Asteroid

Hi, I am trying to parse everything to the right of the string "Test" I have tried formula tool with Right([String], FindString(ReverseString([String]), "Test")) and text to columns and neither work. I am now trying regex and cannot get that to work either. Can anyone help with this? I have attached a workflow.

 

Thank you

3 REPLIES 3
Felipe_Ribeir0
16 - Nebula

Hi @Link86 

 

Try Test(.*)

 

Felipe_Ribeir0_0-1673623856975.png

 

DataNath
17 - Castor

Hey @Link86, if you wanted to stick to string functions like your initial approach then you could use something like this. You just find the Index of 'Test' and then add 4 (as it's a 4 letter word), then take the remainder of the string:

 

DataNath_0-1673624714506.png

Link86
8 - Asteroid

Thank you

Labels