Help for this page

Select Code to Download


  1. or download this
    use LWP::Simple qw( get );
    use HTML::TokeParser::Simple;
    
    ...
    my $doc = $p->parse_html_string($page);
    my ( $td ) = $doc->findnodes('//td[@class="someClass"]');
    print $td->textContent, $/;