Hi
any idea of how to parse a file like this. The problem that I found reading a line a putting into a list that it does not respect the blanks, I need to parse first 9 positions, then 8 positions then 8 positions, then 7, then 7 then 7 then 7
012345678901234567890123456789012345678901234567890
abcdefgh: 1234 5678 45 45 45 45
abcdefgh: 1234 45 45 45
abcdefgh: 1234 45 45 45
abcdefgh: 1234 5678 45 45 45
abcdefgh: 1234 5678 45 45 45
into
012345678901234567890123456789012345678901234567890
|abcdefgh:| 1234| 5678 | 45 | 45 | 45 | 45 |
|abcdefgh:| 1234| | 45 | | 45 | 45 |
|abcdefgh:| 1234| | 45 | 45 | | 45 |
|abcdefgh:| 1234| 5678 | | 45 | 45 | 45 |
|abcdefgh:| 1234| 5678 | 45 | 45 | 45 | |