NateNate60@lemmy.world to Programmer Humor@lemmy.ml · edit-224 hours agoOh boy what a beautiful regex. I'm sure it does something logical and easy to understand.lemmy.worldimagemessage-square73fedilinkarrow-up1264arrow-down18file-text
arrow-up1256arrow-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-224 hours agomessage-square73fedilinkfile-text
^.?$|^(..+?)\1+$ <answer> Matches strings of any character repeated a non-prime number of times https://www.youtube.com/watch?v=5vbk0TwkokM
minus-squareyrmp@lemmy.worldlinkfedilinkarrow-up14arrow-down8·20 hours agoRegex should generally be avoided wherever possible.
minus-squareNateNate60@lemmy.worldOPlinkfedilinkarrow-up12·20 hours agoYeah but it’s just so tempting… It validates so many inputs so easily…
minus-squareyrmp@lemmy.worldlinkfedilinkarrow-up12arrow-down1·20 hours agoAnd misses others you didn’t think about.
minus-squaregwilikers@lemmy.mllinkfedilinkarrow-up6·19 hours agoYeah, I’ve found myself wasting quite a lot of time thinking of the ‘perfect regex’ for task X only to realise that I could have avoided doing so by simply taking a different approach.
Regex should generally be avoided wherever possible.
Yeah but it’s just so tempting… It validates so many inputs so easily…
And misses others you didn’t think about.
Yeah, I’ve found myself wasting quite a lot of time thinking of the ‘perfect regex’ for task X only to realise that I could have avoided doing so by simply taking a different approach.