Regular Expressions 101

Community Patterns

Password is between 6 - 10 chars including letters and/or digits.

0

Regular Expression
PCRE (PHP <7.3)

/
([a-z]|[A-Z]|[0-9]){6,10}
/
gm

Description

Password is between 6 - 10 chars including letters and/or digits. You can use maxlength in <input/> field to limit length

http://www.cirrhosismedication.com http://www.pmsecret.com

Submitted by Ellery - 6 years ago