- or download this
foreach $e (@{$data->{footnotes}})
{
print "$e->{footnote}{content}\n";
}
- or download this
my $footnotes = $data->{footnotes}{footnote};
foreach my $id (keys %$footnotes) {
print "$footnotes->{$id}{content}\n";
}
- or download this
my $footnotes = $data->{footnotes}{footnote};
foreach my $footnote (values %$footnotes) {
print "$footnote->{content}\n";
}