(.).*\1.\1.*\1
and Order for 156 with ^a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z*$31–40 of 189 posts
(.).*\1.\1.*\1
and Order for 156 with ^a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z*$[deleted]
Earlier quoted context omitted.
Anchors (208): k$ Ranges (202): ^[a-f]+$ Backrefs (199): (\w{3}).*\1
Backrefs (201): (...).*\1
am I being a bit slow? Why doesn't [^g-z] work on 'ranges'?
Edit: ah, every word in left column has 4 a-f letters. So [a-f]{4} is a shorter match.
Earlier quoted context omitted.
Backrefs (201): (...).*\1
Wait, so what's with the 'point system' here? Why's shdon answer for backrefs 199 and yours 201? (and while you're at it, could you briefly explain (...).*\1 for the regex newbies?)
And conditionals don't seem to work?
Lol so awesome this. I oblige. Much love!
I got Four for 196 with (.).*\1.\1.*\1 and Order for 156 with ^a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z*$
(.)(.\1){3}
Order: 168 ^a*b*c*d*e*f*g*h*i*l*m*n*o*p*r*s*t*w*y*z*$
(You just didn't remove unused letters.)I got Four for 196 with (.).*\1.\1.*\1 and Order for 156 with ^a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*p*q*r*s*t*u*v*w*x*y*z*$