Hello Team,
How to extract the pdf table data. Here I have attached the pdf with the Section G table data. I need to extract each row with the data without any tags. I am using the C# Dot Net to extract. Please help me on this. Sample filled data.pdf (2.2 MB)
@maggi2k5
The PDF that you have shared contains form fields and in order to extract the values, you need to use below code snippet:
using (var pdf1 = new Document(dataDir + @"Sample filled data.pdf"))
{
foreach (var formField in pdf1.Form.Fields)
{
Console.WriteLine(formField.Value);
}
}