XML::Simple::DTDReader 0.04 review

Download
by rbytes.net on

XML::Simple::DTDReader is a simple XML file reading based on their DTDs. SYNOPSIS use XML::Simple::DTDReader; my $ref =

License: Perl Artistic License
File size: 9K
Developer: Alex Vandiver
0 stars award from rbytes.net

XML::Simple::DTDReader is a simple XML file reading based on their DTDs.

SYNOPSIS

use XML::Simple::DTDReader;

my $ref = XMLin("data.xml");
Or the object oriented way:
require XML::Simple::DTDReader;

my $xsd = XML::Simple::DTDReader->new;
my $ref = $xsd->XMLin("data.xml");

XML::Simple::DTDReader aims to be a XML::Simple drop-in replacement, but with several aspects of the module controlled by the XML's DTD. Specifically, array folding and array forcing are inferred from the DTD.

Currently, only XMLin is supported; support for XMLout is planned for later releases.

Requirements:
Perl

XML::Simple::DTDReader 0.04 keywords