Extracting tables from PDFs is a tricky thing. It depends upon the structure of the table.
To extract tables we have to use String manipulation (regex and others)
Read the Text of the Pdf file using the Read PDF Text Activity (keep Preserver Formatting option as True for tables)
The output of the Read PDF Text activity gives a string variable.
Now, use the string manipulation techniques to convert the string, into array of string where each array contains the row and further split the row to get the cell values.
Please go through the xaml file attached. This will give you some direction and you can build upon it your solution, customizing according to your requirements
REGEX_ExtractTableFromPDF.xaml (7.9 KB)