- at least 1 MAJ;
- at least 1 min;
- at least 1 number;
- at least 1 special character (!@#$%^&*)
- at least 8 characters length
(?=^.{8,}$)(?=.*\d)(?=.*[!@#$%^&*]+)(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$
To change the minimal length : modify the "8" in the regex with the length you want.