in reply to Choosing the best XML module for a toy system

I've come to like XML::Rules. I also still like XML::Twig. But when I just needed to alter some attribute values in some not-especially-large (<200KB) files, I tried both of those modules, but ended up going with XML::LibXML because XPath made finding the desired attributes that I wanted to change incredibly simple (Update: And I didn't know about XML::Twig::XPath...though it's still worthwhile learning XML::LibXML).
  • Comment on Re: Choosing the best XML module for a toy system

Replies are listed 'Best First'.
Re^2: Choosing the best XML module for a toy system
by mirod (Canon) on Sep 12, 2008 at 16:17 UTC

    Note that XML::Twig::XPath, which comes with XML::Twig, gives you a proper XPath engine (it's the one from XML::XPath).