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):
- the word
- the length
- a substring of the 2nd thru 4th characters
- the character at the the 3rd position
- the index value of the letter 'e'
Use the args[] array of the "main" method and the System.out method as demonstrated in class.