I'm trying to separate the [0-9] and [A-Z] in strings like these:
100M
20M1D80M
20M1I79M
20M10000N80M
I tried using the Python re module, and the following is the code I used:
>>>import re
>>>num_alpha = re.compile('(([0-9]+)([A-Z]))+')
>>>str1="100M"
>>>n_a_match = num_alpha.match(str1)
>>>n_a_match.group(2), n_a_match.group(3)
100,M #just what I want
>>>str1="20M10000N80M"
>>>n_a_match = num_alpha.match(str1)
>>>n_a_match.groups()
('80M', '80', 'M') #only the last one, how can I get the first two?
#expected result ('20M','20','M','10000N','10000','N','80M','80','M')
This regular expression works well for strings which contain only one match, but not several groups of matches. How can I handle that using regular expressions?
