Wildcard characters can be applied to a single term but not to search phrases.
? matches exactly a single character
search string te?t would match both test and text* multiple characters - zero or more sequential characters
search string *est would match test and best and interest, etc.
For details check out this video clip