彩票走势图

PPT处理控件Aspose.Slides功能演示:使用 C# 在 PPTX/PPT 中查找和替换文本

翻译|使用教程|编辑:李显亮|2021-08-17 10:25:58.410|阅读 315 次

概述:查找和替换文本通常用于更新 PowerPoint 演示文稿中的内容。但是,为了对一批演示执行此操作,您需要自动化。因此,本文介绍了如何使用 C# 以编程方式查找和替换 PowerPoint PPTX/PPT 中的文本。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

查找和替换文本通常用于更新 PowerPoint 演示文稿中的内容。但是,为了对一批演示执行此操作,您需要自动化。因此,本文介绍了如何使用 C# 以编程方式查找和替换 PowerPoint PPTX/PPT 中的文本。

  • 使用 C# 在 PPTX 中查找和替换文本

为了查找和替换 PowerPoint 演示文稿中的文本,我们将使用Aspose.Slides for .NET,它是一个功能丰富的 API,旨在从 .NET 应用程序中创建和操作 PowerPoint 演示文稿。

>>你可以点击这里下载Aspose.Slides 最新版测试体验。

使用 C# 在 PowerPoint PPTX 中查找和替换文本

以下是使用 C# 在 PPTX 演示文稿中查找和替换文本的步骤。

  • 使用Presentation加载 PowerPoint 演示文稿
  • 循环播放演示文稿中的每张幻灯片
  • 在每次迭代中,获取ITextFrame数组中的文本框架
  • 循环遍历 ITextFrame 数组,并在每次迭代中执行以下操作:
    • 循环遍历每个文本框架中ParagraphCollection
    • 访问每个Paragraph 中PartionCollection
    • 检查Partion.Text 是否包含搜索字符串。
    • 如果是,找到搜索字符串的位置并通过设置Partion.Text属性替换它
  • 使用Presentation.Save(string, SaveFormat)方法保存更新的演示文稿

以下代码示例展示了如何在 PowerPoint 演示文稿中查找和替换文本。

// Load presentation
Presentation pres = new Presentation("mytextone.pptx");

string strToFind = "search string";
string strToReplaceWith = "replace string";

// Loop through each slide
foreach (Slide slide in pres.Slides)
{
    // Get all text frames in the slide
    ITextFrame[] tf = SlideUtil.GetAllTextBoxes(slide);

    for (int i = 0; i < tf.Length; i++) foreach (Paragraph para in tf[i].Paragraphs) foreach (Portion port in para.Portions) // Find text to be replaced if (port.Text.Contains(strToFind)) { // Replace exisitng text with the new text string str = port.Text; int idx = str.IndexOf(strToFind); string strStartText = str.Substring(0, idx); string strEndText = str.Substring(idx + strToFind.Length, str.Length - 1 - (idx + strToFind.Length - 1)); port.Text = strStartText + strToReplaceWith + strEndText; } } // Save the presentation pres.Save("myTextOneAspose.pptx", SaveFormat.Pptx);

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP