How do you check how many letters are in a Java string?
How do you check what letter is in a certain position in the string (i.e, the second letter of the string)?>
To answer your questions in a easy way:
a) String.length(); b) String.charAt(/* String index */);