Need suggestion in printing the matched result one by one by using HTML-TreeBuilder-XPath findnodes() method

82 Views Asked by At

I am parsing an html content by using HTML-TreeBuilder-XPath in Perl . i have got the xpath location of the data i need. The issue i am facing is ,There are several matches of the xpath $html->findnodes()which is returned by single result ,but i need to print it one by one. Need some suggestion .Thank you.

2

There are 2 best solutions below

0
On BEST ANSWER

You can iterate over using

  for my $node (@$paraelements)  { ..... }

A more complete example

  use HTML::TreeBuilder::XPath;
  my $tree= HTML::TreeBuilder::XPath->new;
  $tree->parse_file( "mypage.html");
  my $paraelements= $tree->findnodes( '//p') ;

  for my $node (@$paraelements)  {
      say $node->as_HTML() ;
  }
0
On

It returns a reference to a list (ARRAYREF). To get back the list, put a @ before the variable to tell Perl to treat that as the [location/memory address] of the list just as JIT's sample code