|
|
|
|
|
by srd
4506 days ago
|
|
The issue with the regex seems to be the nested * matcher in the last part, paired with the grouping: ([\/\w \.-]* )*
(whitespace added to re to circumvent italisizing by HN). IIRC this was a pathological case with perl5.0 regexes as well. Removing one of the redundant * or marking the grouping to be non-capturing with ?: seems to fix the problem. Looks like the regex optimizer could use some love. |
|