Regular Expressions 101

Community Patterns

Six Letters at the start, and one char at the end

1

Regular Expression
PCRE (PHP <7.3)

/
^[[:digit:]]{6}+[a-zA-Z]{1}
/

Description

no description available

Submitted by anonymous - 8 years ago