Table data extraction in pdf
Hi,
I need to extract information from a table in pdf. For example, when I pass a variable with value "Customer Id"(which is in the first column), I need to get the corresponding value from the second column. I used iTextSharp to read the contents of the pdf and I had obtained the result in the form of a string. Then I used C# string operations to get the required data. The problem I face is that the word "Customer Id" (in the pdf) has a space in it. But this is not recognized by iText. So when I use a variable to enter "Customer Id", there is no match between what I have passed and "Customer Id" in the pdf, since according to the extractor "Customer Id" is a single word without any space.
What could I do about this?