T
ThomasJColby
Selection.HomeKey Unit:=wdStory
With Selection.Find
.Text = "(<[0-9]{5})([0-9])"
.ClearFormatting
.MatchWildcards = True
With .Replacement
.Text = "\1-\2"
.ClearFormatting
End With
.Execute Replace:=wdReplaceAll
End With
End Sub
With Selection.Find
.Text = "(<[0-9]{5})([0-9])"
.ClearFormatting
.MatchWildcards = True
With .Replacement
.Text = "\1-\2"
.ClearFormatting
End With
.Execute Replace:=wdReplaceAll
End With
End Sub