MatchWildcards Property Example
This example finds and selects the next three-letter word that begins with "s" and ends with "t."
With Selection.Find
.ClearFormatting
.Text = "s?t"
.MatchAllWordForms = False
.MatchSoundsLike = False
.MatchFuzzy = False
.MatchWildcards = True
.Execute Format:=False, Forward:=True
End With