XML-Reader-PP Version 0.02 XML::Reader::PP - Importing XML::Reader using XML::Parser SYNOPSIS XML::Reader:RS provides all the functionalities of XML::Reader using the parser XML::Parser. use XML::Reader::PP; my $text = q{n tm r}; my $rdr = XML::Reader::PP->new(\$text); while ($rdr->iterate) { printf "Path: %-19s, Value: %s\n", $rdr->path, $rdr->value; } This program produces the following output: Path: /init , Value: n t Path: /init/page/@node , Value: 400 Path: /init/page , Value: m r Path: /init , Value: To find out more about the different functionalities, please have a look at the documentation for XML::Reader. INSTALLATION To install this module, run the following commands: perl Makefile.PL make make test make install SUPPORT AND DOCUMENTATION After installing, you can find documentation for this module with the perldoc command. perldoc XML::Reader::PP You can also look for information at: RT, CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=XML-Reader-PP AnnoCPAN, Annotated CPAN documentation http://annocpan.org/dist/XML-Reader-PP CPAN Ratings http://cpanratings.perl.org/d/XML-Reader-PP Search CPAN http://search.cpan.org/dist/XML-Reader-PP AUTHOR Klaus Eichner COPYRIGHT AND LICENSE Copyright (C) 2012 by Klaus Eichner All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the artistic license 2.0, see http://www.opensource.org/licenses/artistic-license-2.0.php