What is the best strategy for reading a pdf w/multiple choice questions? #161
Unanswered
metalaboratorio
asked this question in
Q&A
Replies: 2 comments
-
That's an interesting case, thanks for sharing the PDF! The key is to design:
In this case, it looks like each question is preceded by a number and a parenthesis => we could use that to recognize each question. If I remember well, pdfreader's rule-based parser is not able to loop its logic over a document that repeats the same structural pattern more than once. In that case, I see two possibilities:
Good luck, and please share your results! |
Beta Was this translation helpful? Give feedback.
0 replies
-
Also, did you try asking ChatGPT for a solution, yet? (Either a high level solution, or code) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Should I transform the entire text at once or use the rules to search for each question separately.
My first idea was to search for the questions - "1)" - and then each option -"a)"- in a different group, but it didn't work.
Page 6.pdf
My intention is to transform these questions in athe pdf file into HTML form.
I think I'm doing something wrong, I'd appreciate it if someone could help me, tks.
Beta Was this translation helpful? Give feedback.
All reactions