Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    use XML::Parser;
    ...
                 ErrorContext => 2,
                 );
    $p->parsefile('Spreadsheet.xls');
    
  2. or download this
    use IO::File;
    use Data::Dumper;
    ...
        );
      $p->parse_file($fh);
      $p->eof;