Regular Expressions 101

Community Patterns

Username (Alphanumeric Only)

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^[a-z0-9]+$
/
gi

Description

Alphanumeric Only (Uppercase + Lowercase + Numeric) Not support special character.

Submitted by yvnt - 10 months ago