I need some help getting my REGEX to work.
I need to validate a password that is based on the following rules:
At least 1 uppercase char at least 1 lowercase char At least 1 number min length 8 char.
0 or more special character no white space
This what I have so far
String pattern = r'^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9]).{8,}$';
How do I prevent whitespace?
Thanks for your help