Regular Expressions 101

Community Patterns

Password (Numeric, Special Char, Uppercase, Lowercase)

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{6,}$
/
g

Description

Password Regex with minimum contain one Numeric, Special Char, Uppercase, Lowercase

Submitted by yvnt - 10 months ago