docs/ure: Document some more supported regex operators.

pull/3903/merge
Damien George 2018-07-02 14:52:43 +10:00
rodzic 4727bd1db8
commit 41226e9a18
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -20,14 +20,19 @@ Supported operators are:
including negated sets (e.g. ``[^a-c]``). including negated sets (e.g. ``[^a-c]``).
``'^'`` ``'^'``
Match the start of the string.
``'$'`` ``'$'``
Match the end of the string.
``'?'`` ``'?'``
Match zero or one of the previous entity.
``'*'`` ``'*'``
Match zero or more of the previous entity.
``'+'`` ``'+'``
Match one or more of the previous entity.
``'??'`` ``'??'``
@ -36,6 +41,7 @@ Supported operators are:
``'+?'`` ``'+?'``
``'|'`` ``'|'``
Match either the LHS or the RHS of this operator.
``'(...)'`` ``'(...)'``
Grouping. Each group is capturing (a substring it captures can be accessed Grouping. Each group is capturing (a substring it captures can be accessed