使用novacode-docx和c#替换docx文件的特定文本

时间:2016-07-27 08:26:33

标签: c# novacode-docx

我正在使用这个dll

https://docx.codeplex.com/

我想要做的是替换.docx文件中的字符串

这是我的示例docx

enter image description here

使用直接qoute。所以我需要把它改成卷曲的qoute

这是我的代码

TargetClass = A if some_condition else B
instance = TargetClass()

以及我如何运行代码。

static void Replace(string filename, string a, string b)
        {
            // Load the document.
            int i = 0;
            using (DocX document = DocX.Load(filename))
            {
                // Replace text in this document.
                document.ReplaceText(a, b);

                // Save changes made to this document.
                document.Save();
            } // Release this document from memory.
        }

请注意我只使用CLOSING CURLY QOUTE。我怎么能做到这一点。 第一个qoute将改为Open curly qoute,第二个qoute将被关闭。我的段落中有很多qoute

谢谢

0 个答案:

没有答案