philnash@programming.dev to Programming@programming.devEnglish · 1 年前A comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comexternal-linkmessage-square15fedilinkarrow-up1107arrow-down12cross-posted to: [email protected]
arrow-up1105arrow-down1external-linkA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comphilnash@programming.dev to Programming@programming.devEnglish · 1 年前message-square15fedilinkcross-posted to: [email protected]
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up4arrow-down8·1 年前Is 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 年前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.
minus-squaresebsch@discuss.tchncs.delinkfedilinkarrow-up1arrow-down4·1 年前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?
minus-squareburntsushi@programming.devlinkfedilinkEnglisharrow-up3·1 年前Both 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.