Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
147 views
in Technique[技术] by (71.8m points)

python - Why Does a Repeated Capture Group Return these Strings?

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'
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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 aa, bb 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

Reference


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...