dlclark / regexp2

A full-featured regex engine in pure Go based on the .NET engine
MIT License
997 stars 84 forks source link

not work with `(\d)\1{3}` #17

Closed cute-angelia closed 6 years ago

cute-angelia commented 6 years ago

hi,

i want found some repeated number in a string

string : 3331112233 reg: (\d)\1{3}

result is nil

cute-angelia commented 6 years ago

sorry