A regex to check for strong passwords:
This one will validate a password with a length of 5 to 10 alphanumerical characters, with at least one upper case, one lower case and one digit:
^[a-zA-Z0-9]{5,10}(?<=[A-Z].*)(?<=[a-z].*)(?<=[0-9].*)$
It doesn't work in all regex implementations because it relies on variable-length backreferenceslook-behinds.
As MizardX points out, using look-ahead may work for in most cases:
^(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])[a-zA-Z0-9]{5,10}$
