I am still learning REGEX, and I've run into an issue ...
I am trying to separate a string that is composed of a mixture of letters and numbers that are in decimal format:
AB0.500CD1.05EF2.29
Into something like this:
list1 = AB,CD,EF
list2 = 0.500,1.05,2.29
A complication to all this is that I also have strings that look like this:
AB1CD2EF3
Which I'd also like to separate into this:
list1 = AB,CD,EF
list2 = 1,2,3
A previous inquiry yielded the following snippet,
import re
pattern = re.compile(r'([a-zA-Z]+)([0-9]+)')
for (letters, numbers) in re.findall(pattern,cmpnd):
print numbers
print letters
This example works fine for strings of the 2nd kind, but only "finds" the leading digit in the numbers that contain decimal places in the strings of the first kind.
I've attempted an approach using the following line:
pattern = re.compile(r'([a-zA-Z]+)([0-9]+(\.[0-9]))')
But this results in an error: "ValueError: too many values to unpack"
Thanks for any and all assistance!