Regular expression reference for application exclusions
Use this table, and the examples below, for reference when adding application exclusions.
Effect | Pattern | Example pattern | Example match |
---|---|---|---|
Start of a string | |
|
|
End of a string | |
| End of a |
A single character of: a, b or c |
|
|
|
A character except: a, b or c |
|
|
|
A character in the range: a-z |
|
| O |
A character not in the range: a-z |
|
|
|
A character in the range of: a-z or A-Z |
|
|
|
Any single character | | |
|
Any whitespace character |
|
| any |
Any non-whitespace character |
|
|
|
Any digit |
|
| not |
Any non-digit |
|
|
|
Matches either a or b |
|
|
|
Zero or one of a |
|
|
|
Zero or more of a |
|
| a |
One or more of a |
|
|
|
Exactly 3 of a |
|
| a aa |
3 or more of a |
|
| a aa |
Between 3 and 6 of a |
|
| a aa |