![]() |
#1
|
|||
|
|||
![]()
Hello, I am using find and replace and it seems to work fine but I need to modify it. Here is the code.
Code:
Sub findMm() Dim strfind() As Variant Dim strreplace() As Variant Dim i As Integer strfind = Array("A", "An", "The", "To", "With" ) strreplace = Array("a", "an", "the", "to","with") For i = 0 To UBound(strfind) With Selection.find .ClearFormatting .Replacement.ClearFormatting .Text = strfind(i) .Format = True .Forward = True .MatchWildcards = False .MatchCase = True .Replacement.Text = strreplace(i) .Execute Replace:=wdReplaceAll End With Next i End Sub For Example: To Find The Answer Of The Question. With The Help Of People. Replace the text except for the first word To Find the Answer to the Question. With the help of People. How can it be done?? Thanks in advance. |
|