我正在使用这个dll
我想要做的是替换.docx文件中的字符串
这是我的示例docx
使用直接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
谢谢