Help for this page

Select Code to Download


  1. or download this
    use HTML::TreeBuilder::XPath;
    my $tree = HTML::TreeBuilder::XPath->new;
    ...
    
    print "@headers\n";
    
  2. or download this
     
    my @headers = $tree->findvalues( q{
    
    ...
    )[1]
            //td[ @class = 'HeaderTitle' ]
    } );