I believe you could use something like:
Code:
With objWord.Documents("Temporary.docx").Range
With .Find
.ClearFormatting
.Replacement.ClearFormatting
.Text = "^13cc [!^13]@^13"
.Replacement.Text = ""
.Forward = True
.Wrap = wdFindStop
.Format = False
.MatchWildcards = True
.Execute
End With
Do While .Find.Found
.Start = .Start + 1
.Font.Size = 9
.Collapse 0 '0= wdCollapseEnd
.Find.Execute
Loop
End With