Help for this page

Select Code to Download


  1. or download this
     # Shorthand...top level rows() method assumes the first table found i
    +n
     # the document if no arguments are supplied.
     foreach $row ($te->rows) {
         print join(',', @$row), "\n";
     }
    
  2. or download this
    use strict;
    use warnings;
    ...
    $te->parse($html_string);
    
    print Dumper($te->rows);