Find.MatchWholeWord property (Word)

True if the find operation locates only entire words and not text that's part of a larger word. Read/write Boolean.

Syntax

expression. MatchWholeWord

expression An expression that returns a 'Find' object.

Remarks

Use the Text property of the Find object or the FindText argument with the Execute method to specify the text to be located in a document.

Example

This example clears all formatting from the find and replace criteria before replacing the word "Inc." with "incorporated" throughout the active document.

With ActiveDocument.Content.Find 
 .ClearFormatting 
 .Replacement.ClearFormatting 
 .MatchWholeWord = True 
 .Execute FindText:="Inc.", _ 
 ReplaceWith:="incorporated", Replace:=wdReplaceAll 
End With

See also

Find Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.