Word: replace ... ... with space

B

Birdtoes

For Word - I need to replace the following: ... ... with one space. I have
a lot of these ... ... 's throughout a document and they all need to be
replaced by one space. How do I do this with "search and replace?" Because
nothing I do seems to work.
 
D

Don Guillett

try
Sub replaceit()
For Each c In Selection
c.Value = Application.Substitute(c, ".", "")
Next
End Sub
 
Top