I would like to split a String of 41 Characters like the example below:
01288D29424001190601AJGBGR1413190528SR117
Into different columns based on character count from left to right, my constant character count criteria to split the string is:
5 6 3 6 2 4 4 6 1 1 3
01288 D29424 001 190601 AJ GBGR 1413 190528 S R 117
The string above will be my end result, take into consideration that every space represent a new column.

