NateNate60@lemmy.world to Programmer Humor@lemmy.ml · edit-29 months agoOh boy what a beautiful regex. I'm sure it does something logical and easy to understand.lemmy.worldimagemessage-square18fedilinkarrow-up13arrow-down10file-text
arrow-up13arrow-down1imageOh boy what a beautiful regex. I'm sure it does something logical and easy to understand.lemmy.worldNateNate60@lemmy.world to Programmer Humor@lemmy.ml · edit-29 months agomessage-square18fedilinkfile-text
^.?$|^(..+?)\1+$ <answer> Matches strings of any character repeated a non-prime number of times https://www.youtube.com/watch?v=5vbk0TwkokM
minus-squareNateNate60@lemmy.worldOPlinkfedilinkarrow-up1·9 months agoThey said— A line with exactly 0 or 1 characters, or a line with a sequence of 1 or 3 or more characters, repeated at least twice Note— …or a line with a sequence of 1 or 3 or more characters, repeated at least twice It should be— …or a line with a sequence of 2 or more characters, repeated at least twice The regex in the post will match “abab”. Their original description (line 2 of this comment) will not match “abab”.
They said—
Note—
It should be—
The regex in the post will match “abab”. Their original description (line 2 of this comment) will not match “abab”.