[docs] [issue23532] add example of 'first match wins' to regex "|" documentation?
Serhiy Storchaka
report at bugs.python.org
Sun Jun 4 11:57:51 EDT 2017
Serhiy Storchaka added the comment:
>From the documentation:
"""
As the target string is scanned, REs separated by ``'|'`` are tried from left to right. When one pattern completely matches, that branch is accepted. This means that once ``A`` matches, ``B`` will not be tested further, even if it would produce a longer overall match. In other words, the ``'|'`` operator is never greedy.
"""
I think this completely describes the behavior.
----------
nosy: +serhiy.storchaka
resolution: -> not a bug
status: open -> pending
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23532>
_______________________________________
More information about the docs
mailing list