Basically my question is this, why is:
String word = "unauthenticated";
word.matches("[a-z]");
returning false? (Developed in java1.6)
Every bit of documentation I've read suggests this should work, as well as \S, ^\s, and other suggestions, unless I've loss the ability to comprehend simple English and logic. Am I loosing it?
Basically I want to see if a string passed to me has alpha chars in it.
Thanks