Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to implement a program in Java that will find the name of a chapter, and then read and store its content. The initial documents to be parsed are in txt files.

The problem is how to identify the beginning of the next chapter so as to stop, and store it. That is because the format of the documents is not the same.

Thank you for your answers in advance!

share|improve this question
Very generic question. Do you have some code? On which kind of meta data do you want to operate, e.g. how do you want to identify a 'chapter'? You have to provide more details! – home Aug 4 '11 at 15:07
Could you narrow the question? What signature characters separate one chapter from the next? Try this post for more info on Java text parsing – Kyle Aug 4 '11 at 15:07

closed as not a real question by Sebastian Paaske Tørholm, berry120, Marcelo, Antony Vennard, hakre Feb 8 '12 at 14:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

"Identifying chapters" is a very loose definition - the format of the documents might not be the same but is there any similarity between the different types? A certain number of new lines for instance? If you've got say 3 different styles it's almost definitely going to be easier to deal with those styles explicitly than try and code something generic to recognise all possible formats that might split up chapters, and this would be the approach I'd recommend.

If you're talking completely generically then nothing will be perfect - you're most likely always going to have some slip through the net. But if you want to go down this route you might want to start playing with ANTLR. Be warned, it's definitely not simple though...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.