philnash@programming.dev to Programming@programming.devEnglish · 1 year agoA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comexternal-linkmessage-square15fedilinkarrow-up179arrow-down12
arrow-up177arrow-down1external-linkA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comphilnash@programming.dev to Programming@programming.devEnglish · 1 year agomessage-square15fedilink
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up0arrow-down1·1 year agoOk thanks for the clarification. I would argue, the gold standard of regex would be perlre or even re from python. I never heard one discouraging using them. Do you know sth I don’t?
minus-squareburntsushi@programming.devlinkfedilinkEnglisharrow-up2·1 year agoBoth Perl and Python use backtracking regex engines and are thus susceptible to similar problems as discussed in the OP.
Ok thanks for the clarification.
I would argue, the gold standard of regex would be perlre or even re from python. I never heard one discouraging using them. Do you know sth I don’t?
Both Perl and Python use backtracking regex engines and are thus susceptible to similar problems as discussed in the OP.