Help for this page

Select Code to Download


  1. or download this
    $VAR1 = {
              'version' => '2.0',
              'xmlns:media' => 'http://search.yahoo.com/mrss/',
    ...
                           'zoneColor' => '0'
                         }
            };
    
  2. or download this
    my $showAbbreviation = $current->{'fileSet'}->{'showAbbreviation'};
     if ( not defined $showAbbreviation ) {
            $showAbbreviation = "";
        }
    
  3. or download this
    if (exists $current->{'fileSet'}->{'showAbbreviation'} ) {
        $showAbbreviation = $current->{'fileSet'}->{'showAbbreviation'};
        print "Yes: $showAbbreviation\n";
    ...
        $showAbbreviation = "";
        print "No: $showAbbreviation\n";
        }