> A notable limitation of the ``re.match`` method is that it fails to > capture all group match information for repeatedly matched groups. > For example, in a call like this :: > > m0 = re.match(r'([A-Z]|[a-z])*', 'XxxxYzz') > > one would like to see that the group which matched four times matched > the strings ``'X'``, ``'xxx'``, ``'Y'`` and ``'zz'``. I suspect there is a typo in the example and that the asterisk should precede the right paren: m0 = re.match(r'([A-Z]|[a-z]*)', 'XxxxYzz') Raymond
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4