and the operators:
- x*
Matches x zero or more times. Priority: high.
- x+
Matches x one or more times. Priority: high.
- x?
Matches x zero or once. Priority: high.
- xy
Matches x, then y.
Priority: medium.
- x|y
Matches either x or y.
Priority: low.
The order of evaluation may be changed by using parentheses.
If the first character of the Regxp-2 query
is a plus character (+) it marks the
beginning of a section with non-standard specifiers.
The next plus character marks the end of the section.
Currently Zebra only supports one specifier, the error tolerance,
which consists one digit.
Since the plus operator is normally a suffix operator the addition to
the query syntax doesn't violate the syntax for standard regular
expressions.