使用Interop删除Word中两次出现之间的文本

时间:2019-07-08 10:24:37

标签: c# ms-word office-interop word-interop

我有一段用##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);

我想念什么?

0 个答案:

没有答案