Regular Expressions 101

Community Patterns

Alpha then 7 numbers

1

Regular Expression
PCRE (PHP <7.3)

/
[A-Za-z][0-9]{1,7}
/

Description

Alpha then 7 numbers

Submitted by Jeff Cunningham - 8 years ago