Regular Expressions 101

Community Patterns

Find lines with more than two dots

0

Regular Expression
ECMAScript (JavaScript)

/
^.*(?:\..*){2,}$
/
mg

Description

more than two dots

Submitted by Leonard Deutsch - 2 years ago