Enter a string or pattern and click on the Submit button to find all the reports matching the search criteria.
Click on any report in the list to run the report (see Report>Run).
The following examples illustrate the different kinds of string search:
- *, lists all reports.
- worm, finds all reports containing the word "worm".
- worm*, finds all reports containing the word "worm" or "worms". The * is a pattern representing an sequence of 0 or more characters. worm* trojan*, finds reports matching both the worm* and trojan* patterns.
The * symbol in a pattern matches any sequence of zero or more characters, for example the pattern router* would match: "router", "routers", "router123" etc. The ? symbol matches any single character, for example the pattern router? would match: "routers", "router1", "router2", but not "router" or "router12".