Hello
I have attached the word file attachment with font file.
I am trying to search for a word ^mb in the given document
but its searching for this word also g§^mbZm
I am looking for exact match.
So Please give me a solution for this.
Is there a way to identify the beginning of paragraph in find replace ?
This is the macro code i have pasted below
With Selection.Find
.Text = ^mb
.Replacement.Text = test
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = True
.MatchWholeWord = False
.MatchKashida = False
.MatchDiacritics = False
.MatchAlefHamza = False
.MatchControl = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
|