I need password field validation that should block if more than 4 repeating characters.
Expected Result: Eg: abcde@123 - true aaaacad@123 - false (5 "a" present)
^(?=.*[A-Za-z])(?=.*\d.*\d)(?=.*[$@$!_%*#?&.])[A-Za-z\d$@$!%*#_?&.]{8,}$
I tried those solutions but its checking continuous repeating characters