The wildcard is an advanced finding feature that has some powerful options beyond the standard * and ? options for Word. What Word calls ‘wildcard’ is really Regular Expressions, or at least a version of RegEx.
Beginning or end of a word
The beginning of a word can be represented by the “less than” symbol (<). For example, <(inter) finds “interesting” and “intercept”, but not splinter.
Conversely the end of a word can be represented by the “greater than” symbol (>). For example (inter)> finds “splinter” but not “interesting” nor “intercept”.
Finding one of a group of characters
A group of characters to choose from can be represented by grouping them inside the square brackets [ ]. For example w[io]n will find both “win” and “won”.
A range of characters to choose from can be represented by specifying the alphabetical range inside the square brackets with a hyphen between them [-]. For example, [r-t]ight will find “right” and “sight”, but not “fight”. Ranges must be in ascending order.
Conversely, you can specify a group of characters that excludes a specific range, by adding the exclamation mark (!) to negate the statement. For example, t[!a-m]ck finds “tock” and “tuck”, but not “tack” or “tick”.
To search for a character that has been defined as a wildcard, type a backslash () before the character. For example, typing ? will let you find a question mark as part of your search.
Finally, you can use parentheses to group the wildcard characters and text and to indicate the order of evaluation. For example, typing <(con)*(ed)> will find “converted” and “conscripted”.
Found! Word shortcut to the Advanced Find dialog
Find has clever options in Microsoft Word
More great Word tricks with Find