in reply to total noob question about xml parsing

I appreciate that you said you cannot install CPAN modules, but you could at the very least use some of the pure-Perl XML parsing modules (even copying and pasting the code into your program, if worse comes to worse).

You could try this: XML::Parser::Lite::Tree or this: http://www.kawa.net/works/perl/treepp/treepp-e.html (but you might have to solve manually some dependencies on your very old version of Perl). They certainly don't have all the bells and whistles of full-fledged heavy-weight Dom or Sax XML parsers, but they may possibly get you out of trouble.

  • Comment on Re: total noob question about xml parsing

Replies are listed 'Best First'.
Re^2: total noob question about xml parsing
by kgovert007 (Novice) on Oct 25, 2014 at 18:56 UTC
    Thanks! I will try to see if this is possible.