查找和替换
您可以使用 IronPDF 的 "替换 "功能查找并替换 PDF 中的文本。
如何在 C&num 中替换 PDF 中的文本;
- 安装 C# 库以替换 PDF 文档中的文本
- 使用
>FromFile
方法 - 利用
ReplaceTextOnPage
方法替换文本 - 向方法输入页码、旧文本和新文本
- 导出包含新文本的 PDF 文件
using IronPdf; // Using an existing PDF var pdf = PdfDocument.FromFile("sample.pdf"); // Parameters const int pageIndex = 1; const string oldText = ".NET 6"; // Old text to remove const string newText = ".NET 7"; // New text to add // Replace Text on Page pdf.ReplaceTextOnPage(pageIndex, oldText, newText); // Save your new PDF pdf.SaveAs("new_sample.pdf");
Imports IronPdf ' Using an existing PDF Private pdf = PdfDocument.FromFile("sample.pdf") ' Parameters Private Const pageIndex As Integer = 1 Private Const oldText As String = ".NET 6" ' Old text to remove Private Const newText As String = ".NET 7" ' New text to add ' Replace Text on Page pdf.ReplaceTextOnPage(pageIndex, oldText, newText) ' Save your new PDF pdf.SaveAs("new_sample.pdf")
Install-Package IronPdf
您可以使用 IronPDF 的 "替换 "功能查找并替换 PDF 中的文本。
>FromFile
方法ReplaceTextOnPage
方法替换文本