@[email protected] to [email protected]English • 1 year agoA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.comexternal-linkmessage-square15fedilinkarrow-up1103arrow-down12cross-posted to: [email protected][email protected]
arrow-up1101arrow-down1external-linkA comprehensive guide to the dangers of Regular Expressions in JavaScriptwww.sonarsource.com@[email protected] to [email protected]English • 1 year agomessage-square15fedilinkcross-posted to: [email protected][email protected]
minus-square@[email protected]OPlinkfedilink5•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-square@[email protected]linkfedilink-3•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-square@[email protected]linkfedilinkEnglish3•1 year agoBoth Perl and Python use backtracking regex engines and are thus susceptible to similar problems as discussed in the OP.
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.