I have a line in a file:
['18G01G03G06G09G11G12G17G19G23G31G32R01']
I need to split it up so that it results in:
['18', 'G01', 'G03', 'G06', 'G09', 'G11', 'G12', 'G17', 'G19', 'G23', 'G31', 'G32', 'R01']
I cant find a way on stackoverflow which explains this although i'm probs wrong. Can anyone help?