parseInt does not seem to be throwing an exception when I pass a letter of the alphabet to it. I assume this is because ASCII letters are treated as integers. So my question is, is there a method that will do this:
boolean isLetter();
And if not, how do I get around what I said about ASCII (if its even a correct assumption) to write the method myself?