Hello
I have a data in column which I would like to parse every 2 char.
Data represents days in a week every 2 char. It could be empty or have two letters code.
I need to split it to columns like that:
Sat | Sun | Mon | Tue | Wed | Thur | Fri |
AC | AC | AC | AC | AC | ||
SH | ||||||
SH | ||||||
VA | VA | |||||
NS | NS | NS | NS | |||
NS | AS | AS | NS | NS | AS |
ACACACACAC
SH
SH
VAVA
NSNS NSNS
NS ASASNSNSAS
NS
NS
VAVA
Solved! Go to Solution.
Hi @dlesny,
you can use a simple regex to do so, just use the tokenize function in the regex tool and the correct regex is ".." one "." for each character, then specify you want 7 columns!
Thank you very much, perfect