Find.MatchFuzzy Property (Word)
True if Microsoft Word uses the nonspecific search options for Japanese text during a search. Read/write Boolean.
Syntax
expression .MatchFuzzy
expression An expression that returns a Find object.
Example
This example conducts a nonspecific search for "ピアノ" in the selected range and selects the next occurrence.
With Selection.Find
.ClearFormatting
.Text = "ピアノ"
.MatchFuzzy = True
.Execute Format:=False, Forward:=True, Wrap:=wdFindContinue
End With