docs/ure: Emphasize not supported features more.

Plus, additional descriptions/formatting.
pull/3429/head
Paul Sokolovsky 2017-11-08 00:24:39 +02:00
rodzic b9580b85a8
commit 5b1b80a8db
1 zmienionych plików z 7 dodań i 5 usunięć

Wyświetl plik

@ -15,8 +15,9 @@ Supported operators are:
``'.'``
Match any character.
``'[]'``
Match set of characters. Individual characters and ranges are supported.
``'[...]'``
Match set of characters. Individual characters and ranges are supported,
including negated sets (e.g. ``[^a-c]``).
``'^'``
@ -36,12 +37,13 @@ Supported operators are:
``'|'``
``'()'``
``'(...)'``
Grouping. Each group is capturing (a substring it captures can be accessed
with `match.group()` method).
Counted repetitions (``{m,n}``), more advanced assertions, named groups,
etc. are not supported.
**NOT SUPPORTED**: Counted repetitions (``{m,n}``), more advanced assertions
(``\b``, ``\B``), named groups (``(?P<name>...)``), non-capturing groups
(``(?:...)``), etc.
Functions