Wildcard search
You can enter wildcard symbols # and * to perform a search with patterns.
The # symbol can be added to a search string to search a single character. Consider the following example:
- The search string te#t results in both test and text.
The * symbol can be added to a search string to search multiple characters. Consider the following examples:
- The search string tes* results in test, testing, and tester.
- The search string te*t results in test and tempest.
- The search string *est results in test and simplest.