Nishant Andoriya
Nishant Andoriya
hey I would like to work on this issue .
> Hey @M-A-D-A-R-A, I would like to know if you have any updates on this. :D Yeah sorry i was having my sem exams Ill looking it as soon as...
i would like to work on this issue can you guide me though it @AyushBherwani1998 plz!! Thanks
Hey , I would like to work on this issue. Please assign it to me.
First i tried with "N1234567" it said Invalid password , then i tried with "Nishant" it said "Invalid password " again, now for "ASDFGH" it accepted this password.
The Written Regex right now is:- r'^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[!@#\$&*~]).{8,}$ means r'^ (?=.*[A-Z]) // should contain at least one upper case (?=.*[a-z]) // should contain at least one lower case (?=.*?[0-9]) // should...
> @M-A-D-A-R-A, I assigned this to @AvneetSingh2001 as you didn't respond to @CyberWake I already mentioned in the issue that can u assign it to me, also i told sumitra...
So Im trying to define a bool variable for checking every case. final bool hasUppercase = password.contains(RegExp(r'^(?=.*[A-Z])+$')); final bool hasDigits = password.contains( RegExp(r'^-?[0-9]+$')); final bool hasLowercase = password.contains(RegExp(r'^(?=.*[a-z])+$')); final bool...
> @CyberWake @sumitra19jha Please take a look. It will be helpful if you could give a hint so that i can proceed further. @sumitra19jha @CyberWake
> > So Im trying to define a bool variable for checking every case. > > final bool hasUppercase = password.contains(RegExp(r'^(?=._[A-Z])+$')); final bool hasDigits = password.contains( RegExp(r'^-?[0-9]+$')); final bool hasLowercase...