Alteryx Designer Desktop Discussions

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

ttc or regex

utsarunner981
8 - Asteroid

hello everyone i am probably having a mental block but can someone recommend the best way to split a string into specific columns? the string is nonspecific-it changes from 9 characters to 15 

 

for example: 

this is my data 

column A

ABCDEFGHIJKL

ABCDEFGHI

 

this is the output i am wanting : 

column A      column B    column C

ABC                DEF           GHIJKL

ABC                DEF            GHI 

3 REPLIES 3
atcodedog05
22 - Nova
22 - Nova

Hi @utsarunner981 

 

I would suggest regex parse mode.

 

(\w{3})(\w{3})(.+)

 

Here is how you can do it.

Workflow:

atcodedog05_0-1629309735484.png

 

Hope this helps : )

 

utsarunner981
8 - Asteroid

@  yup! that worked! solved!

atcodedog05
22 - Nova
22 - Nova

Happy to help : ) @utsarunner981 

Cheers and have a nice day!

Labels