Hey everyone,
I have been pulling my hair out trying to figure this out…and I feel like I’m overthinking something.
I am using Google Vision to convert a pdf to plain text. Here is my result when I do this:
The result separates each page of the original document into its own collection:
I want to create a variable for each Bundle’s {{FullTextAnnotation:Text}}
So for this particle document, there are 6 pages, therefore 6 bundles, and I want to create 6 variables where each variable is the text of that page.
The problem I am face is when I go to try and do that, I can’t access each collection. It only shows me one. :
I have tried iterators but that doesn’t do anything (I am guessing because it’s a collection). Is it a simple function that I don’t know about? How can I access all of the Bundles from the Google Vision module so I can create
Variable 1 = Bundle1:FullTextAnnotation:Text
Variable 2 = Bundle2:FullTextAnnotation:Text
Variable 3 = Bundle3:FullTextAnnotation:Text
etc. etc.
I promise I have scoured the community and Youtube for an answer but nothing seems to help
Any help would be greatly appreciated