我有一段用##ABC
标记的文本,因此看起来像这样:
Some text ##ABCtext to be found##ABC some text
我需要查找并删除与互操作性## ABC文本## ABC。到目前为止,我已经提出了以下代码,但是似乎什么也没做:
Microsoft.Office.Interop.Word.Range rng = document.Range();
rng.Find.ClearFormatting();
rng.Find.Replacement.ClearFormatting();
rng.Find.MatchWildcards = true;
rng.Find.Text = "##ABC(.*?)##ABC";
rng.Find.Replacement.Text = "";
rng.Find.Forward = true;
rng.Find.Wrap = Microsoft.Office.Interop.Word.WdFindWrap.wdFindStop;
rng.Find.Execute(Replace: Microsoft.Office.Interop.Word.WdReplace.wdReplaceAll);
我想念什么?