in reply to How to Map Regex to Hash

It looks like you probably want something like:
my %row = $result =~ /(\d+),"([^"]+)"/g;
Update: moved the capturing parentheses.