Help for this page

Select Code to Download


  1. or download this
    my %inc = map { my ($v) = $content =~ /inc_$_=(.*?)\n/; $_ => $v }
                  qw(albums genres artists songs ratings year);
    
  2. or download this
    my %inc = map { $content =~ /inc_$_=(.*?)\n/ ? ($_ => $1) : () }
                  qw(albums genres artists songs ratings year);