Im trying to make a user input validation system within one of my methods... its working fine to a cetain extent, but despite the code, its still allowing for integers as valid
add a method to your code to actually scan for numbers...
something like this:
private boolean containsNumbers(String name) { char[] chars = name.toCharArray(); for (char c : chars) { if (c > 47 && c < 58) { return true; } } return false; }