philnash@programming.dev to Programming@programming.devEnglish · 1 year agoA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comexternal-linkmessage-square15fedilinkarrow-up1105arrow-down12cross-posted to: javascript@programming.dev
arrow-up1103arrow-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-up4arrow-down8·1 year agoIs there one thing not screwed up in this language? I mean it's regex, there are so many good implementations for it.
minus-squarephilnash@programming.devOPlinkfedilinkarrow-up5·1 year agoJavaScript's regex engine isn't the only one to have these problems. There certainly are other implementations, like Re2 and Rust's implementation, that don't have this issue. But they also lack some of the features of the JS implementation too.
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.
Is there one thing not screwed up in this language? I mean it's regex, there are so many good implementations for it.
JavaScript's regex engine isn't the only one to have these problems. There certainly are other implementations, like Re2 and Rust's implementation, that don't have this issue. But they also lack some of the features of the JS implementation too.
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.