I have this string
mod = 'ketobutyric_arp_rm(12);oxidation+%28hw%29(19)'
and want to get the numbers in parentheses as a list some kind of similar to:
mod_pos = ['12','19']
Using split seems to be a bit circuitous, and I don't know how to use a find method on this.
Any suggestions how I can do this?