in reply to
How to Map Regex to Hash
It looks like you probably want something like:
my %row = $result =~ /(\d+),"([^"]+)"/g;
[download]
Update:
moved the capturing parentheses.
Comment on
Re: How to Map Regex to Hash
Download
Code
In Section
Seekers of Perl Wisdom