Regular Expressions 101

Community Patterns

8 Digits Password

2

Regular Expression
PCRE (PHP <7.3)

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

Description

no description available

Submitted by anonymous - 8 years ago