Re-Format Text With Long Sentences

Project #1

Some text files come with extremely long sentences.

Create a program to

Project #2

Create and interactive program

Project #3

Project #1 except set a minimum sentence length for documents with short sentences.

Possible Text Files For Testing

Declaration of Independence
United States Constitution
other text file(s)

Things to Think About

1. how to distinguish words in a text file?
   (separated/terminated by spaces, punctuation, EOS, EOF?)
2. paragraph breaks (blank line?)
3. What to do if an error occurs (sentence can not be split?)
   (print error message? delete new file?)
4. collect statistics on sentence length?

Note: