$_ = "'foo',123,'bar\\'cuz', 'comma,comma',,'void'"; while(/('(.*?)'|([^']*?))($|,\s*)/g) { my $t = $2 || $3; print ">$t\n"; } ___________ >foo >123 >bar\'cuz >comma,comma > >void > #### $_ = "'foo',123,'bar\\'cuz', 'comma,comma',,'void'"; map { my $t = $2 || $3; print "<$t\n"; } m/('(.*?)'|([^']*?))($|,\s*)/g; ______________ <'foo'