XML::Simple::DTDReader 0.04 review
DownloadXML::Simple::DTDReader is a simple XML file reading based on their DTDs. SYNOPSIS use XML::Simple::DTDReader; my $ref =
|
|
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 search tags