The Advanced filter database contains filter rules that can be strung together during the option configuration process. These filters can include and exclude files during the transfer process.
The database is held in text format in a file called monrule.ini.
Regular expressions have a syntax in which a few characters are special constructs and the rest are "ordinary". An ordinary character is a simple regular expression which matches that character and nothing else. The special characters are '\$', '^', '.', '*', '+', '?', '[', ']' and '\'. Any other character appearing in a regular expression are ordinary, unless preceded by '\'.
For example, 'f' is not a special character, so it is ordinary. It is a regular expression that matches the string 'f' and no other string. (It does not match the string 'ff'.) Likewise, 'o' is a regular expression that matches only 'o'.
Any two regular expressions A and B can be concatenated. The result is a regular expression which matches a string if A matches some amount of the beginning of that string and B matches the rest of the string.
For example, you can concatenate the regular expressions 'f' and 'o' to get the regular expression 'fo', which matches only the string 'fo'.
The following are the characters and character sequences which have special meaning within regular expressions. Any character not mentioned here is not special; it stands for exactly itself for the purposes of searching and matching.
The case of zero o's is allowed: fo* does match f.
* always applies to the smallest possible preceding expression. This means that fo* has a repeating o, not a repeating fo.
The matcher processes a * construct by matching, immediately, as many repetitions as can be found. Then it continues with the rest of the pattern. If that fails, backtracking occurs, discarding some of the matches of the *'d construct in case that makes it possible to match the rest of the pattern. For example, matching c[ad]*ar against the string caddaar, the [ad]* first matches addaa, but this does not allow the next a in the pattern to match. So the last of the matches of [ad] is undone and the following a is tried again. Now it succeeds.
Character ranges can also be included in a character set, by writing two characters with a - (hyphen) between them. This means that [a-z] matches any lower-case letter. Ranges may be intermixed freely with individual characters, as in [a-z$%.], which matches any lowercase letter or $, % or period.
To include a ] in a character set, you must make it the first character. For example, [ ]a] matches ] or a. To include a -, you must use it in a context where it cannot possibly indicate a range: that is, as the first character, or immediately after a range.
^ is a special character that matches the empty string -- but only if at the beginning of a line in the text being matched. Otherwise it fails to match anything. This means that ^foo matches a foo which occurs at the beginning of a line.
Because \ quotes special characters, \$ is a regular expression which matches only $, and \ [ is a regular expression which matches only [, and so on.
For the most part, \ followed by any character matches only that character. However, there are several exceptions: characters which, when preceded by \, are special constructs. Such characters are always ordinary when encountered on their own.
No new special characters are ever defined. All extensions to the regular expression syntax are made by defining new two-character constructs that begin with \.
This means that foo\|bar matches either foo or bar but no other string.
\| applies to the largest possible surrounding expressions. Only a surrounding \( ... \) grouping can limit the grouping power of \|.
Full backtracking capability exists when multiple \|'s are used.
This last application is not a consequence of the idea of a parenthetical grouping; it is a separate feature which happens to be assigned as a second meaning to the same \( ... \) construct because there is no conflict in practice between the two meanings. Here is an explanation of this feature:
The strings matching the first nine \( ... \) constructs appearing in a regular expression are assigned numbers 1 through 9 in order of their beginnings. \1 through \9 may be used to refer to the text matched by the corresponding \( ... \) construct.
For example, \(.*\)\1 matches any string that is composed of two identical halves. The \(.*\) matches the first half, which may be anything, but the \1 that follows must match the same exact text.
The above would also hold true for a file called CONTROL. To stop this put a $ metacharacter as follows : ^(CON)$ .... This would ensure that only CON would be recognised by the filter.