If I have the strings "hello8459" and "1234", how would I go about detecting which one had the alphabetical characters in? I've been trying:
//Checking for numerics in an if...
Pattern.matches("0-9", string1);
However it doesn't work at all. Can anyone advise?