LinkScan On-Line Help | LinkScan Include/Exclude Filters |
Help Reference HowTo Card |
LinkScan Include/Exclude FiltersThe Include/Exclude Filters are available on a number of the different LinkScan Reports, often when selecting the Advanced menu options. Use the filters to include or exclude references matching specific pathnames when generating the report. |
This feature may be used to filter the list of documents included within the scope of a selected report. Several controls may be provided on the Menu:
The Include and Exclude fields are used to define the patterns to be included or excluded. The patterns may be matched against the pathname of the Referer document, Target document, or either.
The Include and Exclude patterns take advantage of powerful Perl Regular Expressions. Comprehensive documentation for Perl Regular Expressions is widely available on-line. For example, see: http://perldoc.perl.org/perlre.html. Some simple examples are described below.
To exclude all files in the test directory:
http://your.server.name/test/
Enter the following in the Exclude box:
test/
Note that you must not include the http://your.server.name/ part of the URL.
To exclude multiple test directories such as:
http://your.server.name/products/test/
http://your.server.name/services/test/
Enter:
.*/test/
To make the match case insensitive to exclude:
http://your.server.name/products/TEST/
Enter:
(?i).*/test/
The dollar sign may be used to indicate an end of string. For example:
.*\.htm$
Will match all .htm files but not .html files.
LinkScan On-Line Help. LinkScan Include/Exclude Filters
LinkScan Version 12.3
© Copyright 1997-2012
Electronic Software Publishing Corporation (Elsop)
LinkScan and Elsop are Trademarks of Electronic Software Publishing Corporation
Help Reference HowTo Card |