Regular Expressions 101

Community Patterns

匹配1000-65535之间的数字

0

Regular Expression
PCRE (PHP <7.3)

/
^(?!9999)([1-9]\d{3}|[1-5]\d{4}|6[0-5]{2}[0-3][0-5])$
/
g

Description

no description available

Submitted by anonymous - 7 years ago