Regular Expressions 101

Community Patterns

10

entity

Python
no description available
Submitted by anonymous - 8 years ago

finds the instance of two or more repeating letters

-2

Regular Expression
Python

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

Description

Loading markdown...
Submitted by cp0153 - 8 years ago