From 47037ebee32792f5cc0ef292b7f2fc7d4c734936 Mon Sep 17 00:00:00 2001 From: Miran Date: Wed, 30 Jan 2019 19:49:09 +0100 Subject: fixes #9471 (#10502) --- doc/regexprs.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/regexprs.txt b/doc/regexprs.txt index 5c6d37e89..83dbd2eeb 100644 --- a/doc/regexprs.txt +++ b/doc/regexprs.txt @@ -80,13 +80,13 @@ meta character meaning ``|`` start of alternative branch ``(`` start subpattern ``)`` end subpattern -``?`` extends the meaning of ``(`` - also 0 or 1 quantifier - also quantifier minimizer -``*`` 0 or more quantifier -``+`` 1 or more quantifier - also "possessive quantifier" ``{`` start min/max quantifier +``?`` extends the meaning of ``(`` + | also 0 or 1 quantifier (equal to ``{0,1}``) + | also quantifier minimizer +``*`` 0 or more quantifier (equal to ``{0,}``) +``+`` 1 or more quantifier (equal to ``{1,}``) + | also "possessive quantifier" ============== ============================================================ -- cgit 1.4.1-2-gfad0