如何使用PowerShell在PDF中搜索字符串并返回字符串所在的页码?

时间:2018-01-19 18:51:11

标签: powershell pdf search

标题几乎说明了一切。我想在pdf中搜索某些关键字,然后确定这些关键字所在的页面。

1 个答案:

答案 0 :(得分:2)

鸽子在iTextSharp位上拖尾。你的问题听起来与这篇文章相似。

如何使用带有Pdfreader类的itextsharp读取PDF内容。我的PDF可能包含纯文本或文本图像 Reading PDF content with itextsharp dll in VB.NET or C#

因此在PoSH中,正如trebleCode所述,你可以做类似....

Add-Type -Path .\itextsharp.dll
$reader = New-Object iTextSharp.text.pdf.pdfreader -ArgumentList "$pwd\test.pdf"

# the rest of your code starts here