StringAnalyzer


Write a Java Application that takes a word (5 characters minimum length) from the command line and assigns it to a variable. The output should print (on separate lines):
  1. the word
  2. the length
  3. a substring of the 2nd thru 4th characters
  4. the character at the the 3rd position
  5. the index value of the letter 'e'


  6. Use the args[] array of the "main" method and the System.out method as demonstrated in class.