Use the "[a-z]" wildcard to specify a precise set of acceptable characters to match. Provide a list of characters to match; ASCII character ranges can be specified using the notation "a-z". ("[a-z]" is the same as "[abcdefghijklmnopqrstuvwxyz]".)
FlashStats will attempt to match exactly one character from the set of characters specified.
Finally, if the first character provided is ~ then the entire set of characters is treated as character not to match.
Here are some examples of using the "[a-z]" wildcard:
- If you specify /products/[a-k]*/info.htm in Path To Analyze:
- /products/flashstats/info.htm will match
- /products/maxcharge/info.htm will not match
- If you specify /products/[abcdefg]*/info.htm in Path To Analyze:
- /products/flashstats/info.htm will match
- /products/maxcharge/info.htm will not match
- If you specify /products/[a-z]*/info.htm in Path To Analyze:
- /products/flashstats/info.htm will match
- /products/maxcharge/info.htm will match
- If you specify /products/[a-z]/info.htm in Path To Analyze:
- /products/flashstats/info.htm will not match
- /products/maxcharge/info.htm will not match
- If you specify /products/[~a-k]*/info.htm in Path To Analyze:
- /products/flashstats/info.htm will not match
- /products/maxcharge/info.htm will match
Back to top