Regular Expressions 101

Community Patterns

Can't be numeric only

1

Regular Expression
ECMAScript (JavaScript)

/
\A(?=.*[a-z])[a-z\d]+\Z
/
i

Description

It could be alphanumeric but should not be numeric only

Submitted by anonymous - 8 years ago