I have a regex of Minimum six characters, at least one uppercase letter, one lowercase letter and one number and i want to add it that the same char wont repeat in sequence:
Like aab - wrong And aba - right
Any ideas?
"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{6,}$"