philnash@programming.dev to Programming@programming.devEnglish · 1 year agoA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comexternal-linkmessage-square15fedilinkarrow-up1106arrow-down12cross-posted to: javascript@programming.dev
arrow-up1104arrow-down1external-linkA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comphilnash@programming.dev to Programming@programming.devEnglish · 1 year agomessage-square15fedilinkcross-posted to: javascript@programming.dev
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up1arrow-down4·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-up3·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.