i'm working on a student porject of Hospital system.
I'm facing an issue, when it comes to regular expressions, I need to check if one of my string contains at least one [a-z], [A-Z] and a [0-9]. I've tried this :
test = Pattern.matches("[a-z & A-Z & 0-9]{1}",String) ;
I don't see my mistake since it's has been a long time with my last regular expressions...
A little help would be appreciated. Thanks !