Search found 3 matches

by pbensch
02.08.2015 12:57
Forum: Bugs, issues
Topic: [cantfix] Regex: wrong expression leads to infinite loop
Replies: 4
Views: 15895

Ok, I'll check the RE parser, if there is something missinterpreted.
It'll take it's time, maybe somebody else is faster.
by pbensch
02.08.2015 06:08
Forum: Bugs, issues
Topic: [cantfix] Regex: wrong expression leads to infinite loop
Replies: 4
Views: 15895

Alexey wrote:don't know RE code
Is the RE code imported as library or where does it come from?
by pbensch
02.06.2015 16:33
Forum: Bugs, issues
Topic: [cantfix] Regex: wrong expression leads to infinite loop
Replies: 4
Views: 15895

[cantfix] Regex: wrong expression leads to infinite loop

Just stumbled over an endless loop while unintentionally using a wrong regular expression to replace a substring of an image filename, e.g. "img_01." to "img_001.": Wrong img_([0-9]){2}\.png Correct img_([0-9]{2})\.png It is reproducible using a text file containing: img_1.png im...