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.
Need suggestion in printing the matched result one by one by using HTML-TreeBuilder-XPath findnodes() method
82 Views Asked by Balakumar At
2
You can iterate over using
A more complete example