Regular expression reference
Use this table, and the examples below, for reference when creating application exclusions:
Effect | Pattern | Example pattern | Example match |
---|---|---|---|
Start of a string |
|
|
|
End of a string |
|
| End of a |
Case-insensitive match of following string |
|
|
|
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 |
|
|
|
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 |
Period (dot) is a literal character |
|
| string |