Hacker News new | ask | show | jobs
by edwintorok 2545 days ago
You probably want a regex engine that runs in linear time:

* Google's RE2 https://github.com/google/re2/wiki/WhyRE2

* https://github.com/laurikari/tre/

There is a good series of articles about the problem: https://swtch.com/~rsc/regexp/regexp3.html

I would strongly recommend deploying such a regular expression matcher to avoid problems like this. There are examples in the above article that you can use to test anything in your production deployment that accepts regular expressions to see how well it copes.

1 comments

Might have been a misdirect reply (although useful), but yeah, agree, linear-time regex engines are generally a much better idea.