- or download this
my %inc = map { $_ => ($content =~ /inc_$_=(.*?)\n/)[0] || undef }
qw(albums genres artists songs ratings year);
- or download this
use strict;
use warnings;
...
qw(albums genres artists songs ratings year);
print Dumper(\%inc);
}
- or download this
$VAR1 = {
'artists' => undef,
...
'albums' => 'albumvalue',
'year' => 'yearvalue'
};