Description
Wildcard characters are used in queries to represent one or more alphanumeric characters within a search term. The question mark (?) is used to represent one alphanumeric character within a term. For Example: b??d could return "band", "bond", "baud", etc. An asterisk (*), however, is used to represent zero or more alphanumeric characters. For Example: b*d could return "bad", "bond", "branded", etc.
Syntax
Wildcards must be placed at the end of terms or within terms. For Example: "b*d", "b??d", and "Ban?" are valid, however, "*and" and "?and" are not.
Examples
Scie??? Sci* Be*r Be?r* Science* Sci???*