Help for this page

Select Code to Download


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