1、按Ctrl+F,然后点击替换,然后在“查找内容”中输入“答案:A ”然后点“全部替换”。2、重复上述步骤,在“查找内容”中分别输入“答案:B、C、D”。
用vba可以实现。sub test()For Each MYP In ActiveDocument.ParagraphssText = MYP.Range.Textif instr(stext,"答案:")>0 thenstext="答案:"end ifnext mypend sub