I have a .tex file that I need to parse in order to extract some useful data from it. My idea was to load the .tex file in a string and then work with the string.
The problem is that it is a big file and applying regex on that can be problematic.
What do you thik is the best solution for that? Converting this .tex file in html? Or another format that is easier to deal with?
Thank you.