>>> match = re.findall(r'\w\w', 'hello')
>>> print match
['he', 'll']
Since \w\w means two characters, ‘he’ and ‘ll’ are expected. But why do ‘el’ and ‘lo’ not match the regex?
>>> match1 = re.findall(r'el', 'hello')
>>> print match1
['el']
>>>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
findalldoesn’t yield overlapping matches by default. This expression does however:Here
(?=...)is a lookahead assertion: