in reply to Re: Problem extracting an HTML table with Perl
in thread Problem extracting an HTML table with Perl
Indeed, it got a bit better, but I am still getting a lot of information. I now found that my search is completely independent of that "class" in my $tree->find. So any of the following alternatives gives the same result, and shows that the search is only done on the tag:
my $data =$tree->find( '_tag' =>'div' );
or even
my $data =$tree->find( '_tag' =>'div', class => 'somethingthatdoesnotexists1209841290r' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Problem extracting an HTML table with Perl
by kennethk (Abbot) on Aug 11, 2014 at 17:21 UTC | |
by Sosi (Sexton) on Aug 11, 2014 at 17:56 UTC | |
by kennethk (Abbot) on Aug 11, 2014 at 18:22 UTC |