I’ve got a regex that matches stuff like this:
asdasd[text];
it works fine one step at a time, but if a have something like:
$badinput="add[2,5,525];print['peron'];print['asd','cgfg];time;print['iudofiusdoif'];"; #time should not be matched
this is the code for now:
verify($badinput);
sub verify
{
#returns 1 if it's ok, or the text that breaks the match
my $inp = pop;
if ($inp =~ /^(?:\w{2,6}\[(?<!\\\[).*?\](?<!\\\]);)+$/s)
{
return 1;
}else{
return 0; #should be the text that breaks the match or the char number
};
}
It returns 1 no matter what if the first instruction matches. How do i solve this?
Test this code here.