Regular Expressions 101

Community Patterns

finds the instance of two or more repeating letters

-2

Regular Expression
Python

r"
([a-z])\1{2,}
"

Description

no description available

Submitted by cp0153 - 9 years ago