i find some difficulties to understand this regular expression that i want toCreate A Password Validation Form in my registration page :
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}"?
and olso why we put this character "?=.*" every time in this regular expression ? and what that means ?