Haiyang Ai
Administrator
我在尝试写一个宏,把 Word 中已经高亮的词加上 XML 格式的代码,比如 <noun>高亮的名词</noun> 。
下面的代码是在别人的类似功能代码上的修改,但是目前不工作,希望得到大家的帮助:
下面的代码是在别人的类似功能代码上的修改,但是目前不工作,希望得到大家的帮助:
代码:
Sub addCoding()
Options.DefaultHighlightColorIndex = wdBrightGreen
Selection.Find.ClearFormatting
Selection.Find.Highlight = True
Selection.Find.Replacement.ClearFormatting
Selection.Find.Replacement.Highlight = True
Selection.Find.Execute Replace:=wdReplaceAll
With Selection.Find
Selection.InsertBefore "<noun>"
Selection.InsertAfter "</noun>"
End With
End Sub