Wildcards
For example
PROG++++
matches any eight-character name that starts with PROG, such as PROGTEST. It would not match PROG123 because it contains only seven characters.
PROG*
matches a name of any length that starts with PROG, such as Prog1 or PROGTEST.
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*