i want to validate string for following condition
- string must contain atleast one Upper case charecter
- string must contain atleast one lower case charecter
- string must contain atleast one Numeric charecter
does any one have any idea which is the the best way to do this?
Thanks in advance
This method is Unicode-aware. If by “Upper case charecter” you just mean A-Z, use
and similar for the other two.