http://qs321.pair.com?node_id=673610


in reply to Re^2: How can I access the number of repititions in a regex?
in thread How can I access the number of repititions in a regex?

I understand that the empty () imposes list context on the right...
correct
...making the match return the number of matches.
Not quite. The match returns a list of matches. A list assignment in scalar context returns the number of elements in the list, regardless of the number of those elements that actually get assigned to anything (in this case, zero). So the "5" doesn't propagate. It's the use of the assignment in scalar context that creates the "5".