I want to parse a text file, so the data can be put into a table. Each line of the file is a long string with no regular delimiters. My thought was to use regex to tell Alteryx to parse out each line using ranges of character positions, for example (0-3), (4-10), (14-20), etc. ; but I can't seem to strip the string properly.
If the line is: abc2lsdd22___eori38r
<In the above example '_' = space>
The string should end up parsed into the following blocks:
abc
2lsdd22
eori38r
Thx!