Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
            $entry->get_xpath('./German/Term',0)->text, " - ",
            $entry->get_xpath('./Italian/Term',0)->text, "\n";
    }
    
  2. or download this
    foreach my $entry ( $twig->root->children('Entry') ) {
       print "My terms: ",
         $entry->first_child('German')->first_child_text('Term'), " - ",
         $entry->first_child('Italian')->first_child_text('Term'), "\n";
    }