I have a series of PDF files that contain various tables of data. I am only looking for a specific table in each and my goal is to find what page it is on for each file.
My planned approach is to somehow iterate over each page, read the text and determine if it is the page I'm looking for, if yes then return that page number, else continue to the next page. I've been looking into PDFTools, but it doesn't look like there is a way to loop through the pages.
Does anyone know of any R package that will help me achieve this, or is there a better way I can do this with PDFTools?
Any help will be much appreciated!