Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Since you don't actually want to capture the digits, it may make more sense to use look-arounds, i.e.: re.sub(r'(?<=\d), (?=\d)', ',', coords). – ig0774 Nov 16 '11 at 19:18

2 Answers

up vote 5 down vote accepted

You should be using raw strings for regex, try the following:

coord_re = re.sub(r"(\d), (\d)", r"\1,\2", coords)

With your current code, the backslashes in your replacement string are escaping the digits, so you are replacing all matches the equivalent of chr(1) + "," + chr(2):

>>> '\1,\2'
'\x01,\x02'
>>> print '\1,\2'
,
>>> print r'\1,\2'   # this is what you actually want
\1,\2

Any time you want to leave the backslash in the string, use the r prefix, or escape each backslash (\\1,\\2).

share|improve this answer
Thanks, that did the trick. docs.python.org/library/re.html#raw-string-notation for anyone reading this. – Richard Nov 16 '11 at 19:16
Also stackoverflow.com/questions/2081640/… for a better explanation of what raw strings are. – Richard Nov 16 '11 at 19:17

Python interprets the \1 as a character with ASCII value 1, and passes that to sub.

Use raw strings, in which Python doesn't interpret the \.

coord_re = re.sub(r"(\d), (\d)", r"\1,\2", coords)

This is covered right in the beginning of the re documentation, should you need more info.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.