Hello,
I need to parse data into a new column every 5 characters. For example:
Input:
0a4fs5re2s |
7udsalsa35 |
Output:
0a4fs | 5re2s |
7udsa | lsa35 |
I think Text to columns can do it, but i'm stuck on the delimiter.
Thank you.
Solved! Go to Solution.
Regex tool - parse mode:
(.{5})(.{5})
That will give you two columns of any 5 characters.