I have a line (and a arbitrary number of them) 0 1 1 75 55
I can get it by doing
x = re.search("\d+\s+\d+\s+(\d+)\s+(\d+)\s+(\d+)", line)
if x != None:
print(x.group(1))
print(x.group(2))
print(x.group(3))
But there must be a neater way to write this. I was looking at the docs for something to repeat the previous expression and found (exp){m times}.
So I try
x = re.search("(\d+\s+){5}", line)
and then expect x.group(1) to be 0, 2 to be 1, 3 to be 1 and so on but x.group(1) ouputs 55 (the last number). Im sort of confused. Thanks.
Also on a side note. Do you guys have any recommendations for online tutorials (or free to download books) on regex?