Appboard/old/regular expression filter
Revision as of 18:33, 17 July 2014 by imported>Jason.nicholls
Match Regular Expression Filter Rule
This Filter Rule is based on the comparison of a property's value to a Regular Expression. This rule is an expression comprised of the following fields:
Field | Description |
---|---|
Property | This is the property name to perform the comparison against. |
Regular Expression | This is the regular expression pattern to be used for the evaluation. |
Ignore Case | This specifies whether the regular expression ignores case sensitivity. |
Extended | This specifies whether to use extended mode for the regular expression. When set white space characters in the regular expression pattern are ignored. This is done to allow for more readable patterns. |
Global | This specifies whether to use global matching for the regular expression. |
Multi-Line | This specifies whether the caret(^) and dollar sign($) in the regular expression match before and after new lines. |
DotAll | This specifies whether the dot character (.) in the regular expression pattern matches new-line characters. |