Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can someone tell me why the following does not match:

>>> re.search(r'(\d{2, 10})', '153')

and this one matches:

>>> re.search(r'\d{3}', '153')
<_sre.SRE_Match object at 0x02110368>
share|improve this question

1 Answer

up vote 9 down vote accepted

The re module does not like the space after the 2,:

In [2]: re.search(r'(\d{2, 10})', '153')

In [4]: re.search(r'(\d{2,10})', '153')
Out[4]: <_sre.SRE_Match object at 0x15c4648>

Once you have the space in there, the expression inside the braces is no longer recognized as the repetition operator. Instead, it becomes a literal match looking for {2, 10}:

In [11]: re.search(r'(\d{2, 10})', '1{2, 10}').group(0)
Out[11]: '1{2, 10}'
share|improve this answer
yeah, that works now, thanks :)) – user1187968 Feb 3 '12 at 16:27

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.