[Solved] Method for parsing a txt file [closed]


File formats are specification of structure of a file. They’re usually in binary but in your case and in many other cases, they’re text. The first thing you need to do is decide on the structure of your document and then read it like by line. You can also use tools that make this process much easier, like those based on Parse Grammar rules. I think ANTLR, as mentioned by Philip in his answer, is one of those tools…

solved Method for parsing a txt file [closed]