Filter expressions
Not part of the regular expressions | ||
---|---|---|
! | Exclusion operator | With an exclamation mark before the tilde, an exclusion is defined.
Example: |
~ | Introduction operator | Introduces a regular expression in the text filter. It is not a part of the regular expression. All characters following the tilde are treated as regular expressions. To point out the importance of the tilde for the regular expression, it is placed before each regular expression. |
Part of the regular expressions | ||
^ | Match-beginning-of-line -Operator | Matches the beginning of a list element.
Example: |
$ | Match-end-of-line-Operator | Matches the end of a list element.
Example: |
+ | Match-one-or-more-Operator | This is one of the repetition operators. It always refers to the shortest preceding
regular expression. This can be a single character.
Example: |
| | Alternation Operator | Matches a selection of list elements.
With the |-Operator, the OR operator [Alternation Operator], a selection can be made. Example: |
(...) | Grouping Operators | The (...) operators group a regular expression to a unit.
Examples: |
. | Match-any-character-Operator |
Example: |
\ | Backslash-Escape-Operator | If you want to look for an 'operator character' in a list element, the backslash indicates
that the following character belongs to a list element and is not an operator.
Examples:
|