in reply to XML::Simple help

...Is there a way to pass only part of XML files to parse using this module

I think so, yes:
---
SYNOPSIS use XML::Simple; my $ref = XMLin([<xml file or string>] [, <options>]);
So if you have a way to cut out only parts of the original XML file, you can feed XML::Simple with that. Hard to say however if that would really speed up things.

Would it be possible to make available the problematic XML or something similar for testing ? It might allow some benchmarking and/or insight.

Replies are listed 'Best First'.
Re^2: XML::Simple help
by Anonymous Monk on Oct 18, 2007 at 12:02 UTC
    Sounds like a good idea, if not, XML::Twig can do just that .. see the twig_roots mode ..