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