当前位置: 首页> 文旅> 旅游 > 免费b2b网站大全平台_中国有多少个b2b网站_seo排名优化点击软件有哪些_重庆seo网站推广优化

免费b2b网站大全平台_中国有多少个b2b网站_seo排名优化点击软件有哪些_重庆seo网站推广优化

时间:2025/8/23 5:19:46来源:https://blog.csdn.net/mansai/article/details/144645399 浏览次数:2次
免费b2b网站大全平台_中国有多少个b2b网站_seo排名优化点击软件有哪些_重庆seo网站推广优化

官方文档

https://www.e-iceblue.com/Tutorials/Spire.PDF/Program-Guide/Text/Find-and-replace-text-on-PDF-document-in-C.html

C# 在 PDF 中查找替换文本

原文件如下图,替换第一行的新编码,把41230441044替换为41230441000

替换代码如下:

 PdfDocument doc = new PdfDocument();//加载PDF文档doc.LoadFromFile("Input.pdf");          PdfTextReplaceOptions textReplaceOptions = new PdfTextReplaceOptions();textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.IgnoreCase;textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.WholeWord;textReplaceOptions.ReplaceType = PdfTextReplaceOptions.ReplaceActionType.AutofitWidth;PdfPageBase page = doc.Pages[0];PdfTextReplacer textReplacer = new PdfTextReplacer(page);textReplacer.Options = textReplaceOptions;textReplacer.ReplaceAllText("41230441044", "41230441000");doc.SaveToFile("ReplaceTextInPage.pdf");doc.Dispose();

替换后格式乱了,如下图

解决方法如下,作用PdfTextFinder

参考文档https://www.e-iceblue.com/Tutorials/Spire.PDF/Spire.PDF-Program-Guide/Text/Find-and-Highlight-Selected-Text-in-PDF-in-C-VB.NET.html

C#/VB.NET 在 PDF 文档中查找并突出显示文本

PdfDocument doc = new PdfDocument();//加载PDF文档
doc.LoadFromFile("Input.pdf");          
PdfPageBase page = doc.Pages[0];
PdfTextFinder finder = new PdfTextFinder(page);
var finds = finder.Find("41230441044");
foreach (var textFragment in finds)
{textFragment.ApplyRecoverString("41230441000", Color.White, true);
}
doc.SaveToFile("ReplaceTextInPage.pdf");
doc.Dispose();

关键字:免费b2b网站大全平台_中国有多少个b2b网站_seo排名优化点击软件有哪些_重庆seo网站推广优化

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: