expostfacto
Programmer
if ('bbbbbasasdf' =~ /([^(asdf)]*)/) {
print $1;
}
above prints bbbbb when bbbbbas is desired. Is there any way to do this with regexp? I really really really don't want to have to learn parse::recdescent.
print $1;
}
above prints bbbbb when bbbbbas is desired. Is there any way to do this with regexp? I really really really don't want to have to learn parse::recdescent.