Regular Expressions 101

Community Patterns

Don't allow two consecutive "."

0

Regular Expression
PCRE2 (PHP >=7.3)

/
^(([^.])|([.])(?!\3))+$
/
gm

Description

Don't allow two consecutive .

Submitted by Pythack - 3 years ago