文字查找和替換
您可以使用 IronPDF 的 Replace 在 PDF 中查找和替換文本。
如何在 C# 中替換 PDF 文本
- 安裝 IronPDF C# 函式庫以替換 PDF 中的文字
- 使用載入現有的 PDF
從文件
C# 方法 - 利用
替換頁面上的文字
替換文字的方法 - 將頁碼、舊文本和新文本輸入到方法中
- 導出包含新文本的 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 的 Replace 在 PDF 中查找和替換文本。
從文件
C# 方法替換頁面上的文字
替換文字的方法