Why Does a Repeated Capture Group Return these Strings?

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

Can someone explain why following returns 'cc'?

>>> re.match('(..)+', 'aabbcc').group(1)
'cc'

I was told that because it put each match into group(1), so the last match is 'cc'. Is that true?

Then how to explain following?

>>> re.match('(..)+(...)', 'aabbcc').group(1)
'aa
profilepic.png
manpreet 2 years ago

 

Repeated Capture Group: The Group Number Stays the Same

The group defined by (..) is Group 1. The + quantifier repeats it. Every time the engine is able to repeat the group (matching two characters), Group 1 gets overwritten.

  • When the engine starts to match, it captures aa to Group 1
  • It then captures bb to Group 1
  • It then captures cc to Group 1.

When you inspect Group 1, the engine returns cc. All other captures are lost.

(The exception is the .NET engine, which also returns cc but also allows you to inspect intermediate captures thanks to the CaptureCollection object. It would contain aabb and cc.)

With (..)+(...), Why does Group 1 Contain aa? Backtracking!

To understand this, we again need to follow the path of the regex engine.

  • Once again, when the engine starts to match, it captures aa to Group 1
  • Again, it repeats the (..) group and captures bb to Group 1
  • Again, it repeats the (..) group and captures cc to Group 1
  • The engine now tries to match (...). It fails: there are no characters left to consume.
  • The engine backtracks both in the string and in the regex pattern. The + means one or more times, and we matched .. three times, so we can give one up, or even two. At this stage, the engine gives up the last match of the quantified (..)+ group, which is cc. We are back to when Group 1 was bb.
  • The engine tries to match (...) again. There are only two characters left: cc, so it fails again.
  • The engine backtracks by giving up the last match of the quantified (..)+ group, which is bb. At this stage, Group 1 is aa again.
  • The engine tries to match (...) again. It succeeds: Group 2 is bbc, and Group 1 is aa

0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.