Help for this page

Select Code to Download


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