有没有办法使用C#读取PDF中表格的特定列?

时间:2016-12-30 14:05:12

标签: c# pdf itext

我的PDf有一个包含6列的表。我只需要提取表中3列的内容。这可能是使用itext sharp吗?

1 个答案:

答案 0 :(得分:0)

你不能直接使用itext sharp。你应该编写somde代码来解析你从pdf用itext或任何其他库读取的html文本。

这里有一些有用的链接;

https://www.codeproject.com/questions/734458/convert-pdf-to-html-using-csharp-open-source-libra

c# converting pdf to html

http://aspdotnetcodebook.blogspot.com.tr/2008/08/how-to-convert-pdf-file-to-text-in.html

相关问题