Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $t= XML::Twig->nparse( $xml_string);
    my $elem= $t->getElementById( 'test');
    $elem->print;
    
  2. or download this
    
    #!/usr/bin/perl -w
    ...
    my $t= XML::Twig->new->parse_html( $html_string);
    my $elem= $t->getElementById( 'test');
    $elem->print;