in reply to how to read a particular paragraph from middle of a file line by line and enter each string in the line as an element of an array

Interesting question. It really depends on what starts or ends a paragraph. For example, If one were using MLA style(because I'm in college and am forced to think in MLA style), then split using "\n\t" into an array, then split each paragraph using whatever "period space" is (I forgot) into a two-dimensional array. Then you could look at each sentence arbitrarily.

Hope that helped!

  • Comment on Re: how to read a particular paragraph from middle of a file line by line and enter each string in the line as an element of an array