C# word 替换
private void CreateOneRiZhi(string newPath, string theDate, string info) { System.IO.File.Copy(System.Windows.Forms.Application.StartupPath + @"\template\项目日志.docx", newPath, true); object oMissing = System.Reflection.Missing.Value; Microsoft.Office.Interop.Word._Application oWord = new Microsoft.Office.Interop.Word.Application(); oWord.Visible = true; Microsoft.Office.Interop.Word._Document oDoc; //oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing); object oNewPath = (object)newPath; object readOnly = false; object isVisible = true; object objFalse = false; oDoc = oWord.Documents.Open(ref oNewPath, ref oMissing, ref readOnly, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref isVisible, ref oMissing, ref oMissing, ref oMissing, ref oMissing); oDoc.Activate(); object replaceAll = WdReplace.wdReplaceAll; oWord.Selection.Find.ClearFormatting(); oWord.Selection.Find.Text = "a"; oWord.Selection.Find.Replacement.ClearFormatting(); oWord.Selection.Find.Replacement.Text = "项目日志"; oWord.Selection.Find.Execute( ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing); oWord.Selection.Find.ClearFormatting(); oWord.Selection.Find.Text = "b"; oWord.Selection.Find.Replacement.ClearFormatting(); oWord.Selection.Find.Replacement.Text = theDate; oWord.Selection.Find.Execute( ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing); oWord.Selection.Find.ClearFormatting(); oWord.Selection.Find.Text = "c"; oWord.Selection.Find.Replacement.ClearFormatting(); oWord.Selection.Find.Replacement.Text = info; oWord.Selection.Find.Execute( ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing); object format = MSWord.WdSaveFormat.wdFormatDocument; //将wordDoc 文档对象的内容保存为DOC 文档,并保存到path指定的路径 oDoc.Save(); //oDoc.SaveAs(ref oNewPath, ref format, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing); //关闭wordDoc文档 oDoc.Close(ref oMissing, ref oMissing, ref oMissing); //关闭wordApp组件对象 oWord.Quit(ref oMissing, ref oMissing, ref oMissing); }
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· DeepSeek “源神”启动!「GitHub 热点速览」
· 微软正式发布.NET 10 Preview 1:开启下一代开发框架新篇章
· C# 集成 DeepSeek 模型实现 AI 私有化(本地部署与 API 调用教程)
· DeepSeek R1 简明指南:架构、训练、本地部署及硬件要求
· 2 本地部署DeepSeek模型构建本地知识库+联网搜索详细步骤