Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
PCRE (PHP <7.3)

/
^(?=.*[A-Za-z])(?=.*\d)(?=.*[&-+!*$@%_])([&-+!*$@%_\w]{8,15})$
/
gm

Description

1 lettre, 1 chiffre, 1 caractère spécial au moins Chaine comprise entre 8 et 15 caractères

^(?=.[A-Za-z])(?=.\d)(?=.[&-+!$@%])([&-+!*$@%\w]{8,15})$

Submitted by anonymous - 6 years ago