in reply to Re^2: regex gotcha moving from 5.8.8 to 5.30.0?
in thread regex gotcha moving from 5.8.8 to 5.30.0?
The usual suspects are .* or .*?, because they start by matching the whole string and then backtracking to match less. Can't you replace them with [^;]* or similar?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: regex gotcha moving from 5.8.8 to 5.30.0?
by mordibity (Acolyte) on Feb 10, 2021 at 00:16 UTC |