in reply to Re: Parse XML of large size
in thread Parse XML of large size
Here is the pretty simple code.
I've dumped XML file into Perl's data structure using XMLin() which itself is taking so much of time.
Rest of the other processing to extract the data is not taking much time for me..
use strict; use warnings; use XML::Simple; use XML::LibXML; my $XML_FILE = 'sample.xml'; # Dump of the XML file in Perl's Data Structures my $mldata = XMLin($XML_FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Parse XML of large size
by marto (Cardinal) on Dec 01, 2009 at 12:14 UTC | |
by kalyanrajsista (Scribe) on Dec 01, 2009 at 12:44 UTC | |
| |
|
Re^3: Parse XML of large size
by almut (Canon) on Dec 01, 2009 at 12:30 UTC | |
by kalyanrajsista (Scribe) on Dec 01, 2009 at 12:33 UTC |