Sub Espacios_Irrompibles_En_Acrónimos_E_Iniciales() ' Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "(<[A-Z]{1;}>.)( )(<[A-Z])" .Replacement.Text = "\1^s\3" .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = False .MatchWholeWord = False .MatchAllWordForms = False .MatchSoundsLike = False .MatchWildcards = True End With Selection.Find.Execute Replace:=wdReplaceAll End Sub