InRegex Logo
InRegex
Nuevo

Strong Password Checker

Explicación

This regex pattern ensures that the password contains at least one lowercase letter, one uppercase letter, one digit, one special character, and is between 8 and 16 characters in length.

javascript

Expresión Regular

^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^a-zA-Z\d]).{8,16}$
Copiar
¿Tienes Comentarios?
javascript

Ejemplo de Uso

const passwordRegex = /^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[^a-zA-Z\d]).{8,16}$/;
Copiar

Prueba la expresión

Expresiones Regulares Similares