@NateNate60 to Programmer [email protected] • edit-218 hours agoOh boy what a beautiful regex. I'm sure it does something logical and easy to understand.imagemessage-square69arrow-up1237arrow-down14file-text
arrow-up1233arrow-down1imageOh boy what a beautiful regex. I'm sure it does something logical and easy to understand.@NateNate60 to Programmer [email protected] • edit-218 hours agomessage-square69file-text
^.?$|^(..+?)\1+$ <answer> Matches strings of any character repeated a non-prime number of times https://www.youtube.com/watch?v=5vbk0TwkokM
minus-square Morphit linkfedilink3•10 hours ago “abbabba” “abbabba” doesn’t match the original regex but “abbaabba” does
“abbabba” doesn’t match the original regex but “abbaabba” does
Good catch! Typo. Fixed.