0
 var WordApp = new Word.Application();
 var WordDocument = WordApp.Documents.Open(@"C:\\contract.docx");
 WordReplace("{seller_name}",
      dataGridView1.CurrentCell.OwningRow.Cells[1].Value.ToString(), WordDocument);

我正在使用此代码在 word 文档中进行替换。我怎样才能更换不是 1 次而是多次?我需要用 word 替换所有 {seller_name}。

4

1 回答 1

0

您可以使用https://freeword.codeplex.com来执行此操作。

Document doc = new Document();
doc.LoadFromFile(@"C:\\contract.docx");
doc.Replace("{seller_name}", "Replace Value");
于 2014-04-11T07:42:53.090 回答