expression.MatchFuzzy
expression Required. An expression that returns a Find object.
Example
This example conducts a nonspecific search for "" in the selected range and selects the next occurrence (for example, "
").
With Selection.Find
.ClearFormatting
.Text = "![piano](fe285.gif)
![piano](fe289.gif)
"
.MatchFuzzy = True
.Execute Format:=False, Forward:=True, Wrap:=wdFindContinue
End With