why wont this work
i'm checking if any of the char in the string are letters . easy as that , though its not so easy
( every break, the method name are shown as errors , and the i = i + 1 is said to be dead code , wtf?!? [in eclipse] )
private boolean isWord(String check){ int loop = check.length(); for ( int i = 0 ; i != loop+1 ; i = i + 1){ switch (check.toLowerCase().charAt(i)){ case 'a': return true; break; case 'b': return true; break; // ........ case 'y': return true; break; case 'z': return true; break; default: return false; break; } } }