http://www.perlmonks.org?node_id=598722


in reply to Re: Perl regexp matching is slow??
in thread Perl regexp matching is slow??

Of note is that Perl in particular already has safeguards in place to prevent exponential catastrophes. At least for some large class of pathological patterns, it won’t match them very quickly, but neither will it explode in nearly the same way as more naïve engines. The downside is that the required bookkeeping imposes a performance hit on all matching, which makes Perl’s engine slower than that of languages with more naïve engines, like Java. tilly wrote a great, long article on this subject some time ago.

Makeshifts last the longest.