How would I split this column 'seriesID' into multiple columns to look like the table below? Basically I need to split the string into multiple strings with lengths (3,3,6,1,1,3).
seriesID
1 ISU111aaaaaa33001
2 ISU222bbbbbb33001
3 ISU000cccccc63001
4 ISU333dddddd63001
seriesID pre supp ind data case area
1 ISU111aaaaaa33001 ISU 111 aaaaaa 3 3 001
2 ISU222bbbbbb33001 ISU 222 bbbbbb 3 3 001
3 ISU000cccccc63001 ISU 000 cccccc 6 3 001
4 ISU333dddddd63001 ISU 333 dddddd 6 3 001
Thanks!