Users Guide

About the FileSystem Agent 71
Regular Expressions
Examples
[...] Matches any character listed between the brackets
[^...] Matches any character except those listed between the brackets
^ Matches at the start of the line
$ Matches at the end of the line
? Matches any character zero or one times
* Matches the preceding element zero or more times
+ Matches the preceding element one or more times
{min, max} Matches the preceding element at least min times, but not more than
max times
^CALM$ Literal expression that matches CALM and only CALM because it
is anchored by ^ and $
^CALM Match anything that starts with the first four characters of CALM
(for example, CALMer is a valid match)
CALM$ Match anything where the last four characters are CALM
CALM Match CALM anywhere (for example, beCALMed is a valid match)