Output Report******* page 3
–Table of Contents–
ABC T-8 99 1 18 24
ABC T-098 999 1 28 27
ABC T-21 999 1 85 31
** some random text info till the last page ****
this is the table text extracted from a PDF, i need the output for this as below image in a single DT.
**Note: some PDF’s table text will be for only one page and in some PDF’s the table will be in multiple pages,The given input pdf is having 3 pages of table for the reference. After extracting the text, in between the table data "Output Report ******* page *
–Table of Contents-- " is existed .
i am able to do this if the table is in single page, but failing if the table is with in multiple pages.
Input is dynamically from single page or multiple pages
hello @Anil_G ,
thanks for your response ,
If the table is in one single page, then i’m splitting the data using double split
Table_Text = Split(Split(PDFText," Amount Page")(1),“Output Report”)(0)
after this string manupalation , & then using the generate DT activity for converting the text to DT.
PDFText is the variable from ReadPDF Text Activity ,
Table_Text is the string variable created to store the text after splitting