in reply to Re^2: parsing a very large array with regexps
in thread parsing a very large array with regexps
Those numbers are for simple patterns like /abcde|bdfhj|acegi/. If your patterns are more like
each pattern will might take on the order of ten times as long./a[bc]+d|[^efg](h|i)|klm*n+/
If you have any pathological patterns with nested * or + qualifiers, things can get very slow indeed.
|
|---|