Regular Expression Examples
When using regular expressions in place of simple wildcard matching the expression must be prefixed with "RX: " as illustrated below.
Regular expression equal to simple wildcard match of *.html
matchs any strings with .html at the end
|
rx: .*\.html$ |
Regular expression equal to simple wildcard match of *.html*
matches any strings that contain .html
|
rx: .*\.html |
Regular expression equal to simple wildcard match of *.html and *.htm
matches any string with .htm or .html at the end
|
rx: .*\.htm.$ |