Need a RegEx for a password

1
The password has a minimum of 7 chars and has to contain at least one number and one letter. No max length and no need for capitals
asked
2 answers
7

If this is for the password policy of your Mendix application I would highly recommend following David's advice.

If for some other reason you really need a regular expression, this will perform the checks you specified:

^(?=.*\d)(?=.*[a-zA-Z]).{7,}$
answered
3

This functionality is built-in in mendix v4.2.x Go to Project... Security... Password Policy tab and set it there

answered