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>
|
|
|
The
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
|
||||
|
|