Very beginner question about capturing groups (sorry) but hard to find the answer using Google, or figure out alone from regex websites.
I want to take the string 0.71331, 52.25378 and return 0.71331,52.25378 - i.e. just look for a digit, a comma, a space and a digit, and strip out the space.
This is my current code:
coords = '0.71331, 52.25378'
coord_re = re.sub("(\d), (\d)", "\1,\2", coords)
print coord_re
But this gives me 0.7133,2.25378. What am I doing wrong?
re.sub(r'(?<=\d), (?=\d)', ',', coords). – ig0774 Nov 16 '11 at 19:18