finding all regex matches has always been O(n²). even in the engines built to prevent it | ian erik varatalu

every regex engine that promises linear time breaks that promise the moment you ask for all matches. the problem has been there since the 70s, hiding in the iteration loop.

ian erik varatalu