Community Patterns

Community Library Entry

2

Regular Expression
Created·2016-08-06 21:47
Flavor·Python

r"
(?=^.{10,}$)(?=.*?\d)(?=.*?[a-z])(?=.*?[A-Z])(?=.*?[^a-zA-Z\d])
"
Open regex in editor

Description

1 Uppercase 1 lower case 1 number 1 not a number or letter

Submitted by anonymous