G
gert
http://dfo.svn.sourceforge.net/viewvc/dfo/trunk/cgi/csv.c?view=markup
errcode=regcomp(&re, "test", REG_EXTENDED);
if(errcode==0)errcode=regexec(&re, &buffer[0], 1, &rm, 0);
while(errcode==0)
{
errcode=regexec(&re, buffer+rm.rm_eo, 1, &rm, REG_NOTBOL);
}
Can anybody tel me why this get stuck in a loop and how to unstuck it
please ?
Second problem is that "x(?=x)" is a invalid expression ?
PS i know off topic but i had not much luck at comp.programming, the
source is in c doh
errcode=regcomp(&re, "test", REG_EXTENDED);
if(errcode==0)errcode=regexec(&re, &buffer[0], 1, &rm, 0);
while(errcode==0)
{
errcode=regexec(&re, buffer+rm.rm_eo, 1, &rm, REG_NOTBOL);
}
Can anybody tel me why this get stuck in a loop and how to unstuck it
please ?
Second problem is that "x(?=x)" is a invalid expression ?
PS i know off topic but i had not much luck at comp.programming, the
source is in c doh