M
Minerva
How do I determine how many times a given string appears
in a document?
This will find the string, but can anyone advise me on how
to determine how many times this string is in the range?
with myRange
.Text = "myString"
.Forward = True .Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
end with
in a document?
This will find the string, but can anyone advise me on how
to determine how many times this string is in the range?
with myRange
.Text = "myString"
.Forward = True .Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
end with