Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

How to separate cell value based on blank space

Gsiva3
8 - Asteroid

Hi Team,

 

I have a input with field as AAABBB CCCDDD EEE FFF. I want to split this data into column based on the "Blank Space" between the values. 

 

I have attached sample input and output.

3 REPLIES 3
Luke_C
17 - Castor
17 - Castor

Hi @Gsiva3 

 

The text to columns tool can help with this. See below, I used the split to rows option to get your desired results. The \s delimiter represents a space. 

 

Luke_C_0-1623245743797.png

 

Gsiva3
8 - Asteroid

@Luke_C 

 

Thanks Luke😊

 

Its working fine👍

Kurohits
10 - Fireball

Hi, 

 

It can be done using regex tool. Use (\w+) regex to split data after spaces. check the configuration tool on regex tool. 

 

Attached solution. Please accept as solution if this is working fine for you. 

Labels