in reply to Re: using xml::simple with unknown xml structure
in thread using xml::simple with unknown xml structure

What is happening is that the top level tag doesnt exist in the input structure. This is always the case with XML::Simple from what i know. So for your file, the top-level keys in the $xml hash will be the tags directly under the outer enclosing table tag.

Just started using XML::Simple a couple weeks ago myself, it takes a bit to get used to, but becomes quite powerful once you get used to it.

  • Comment on Re^2: using xml::simple with unknown xml structure

Replies are listed 'Best First'.
Re^3: using xml::simple with unknown xml structure
by ctaustin (Sexton) on Jul 14, 2005 at 19:57 UTC
    It looks like the object oriented method is getting me what I needed. I don't see a whole lot of difference with what I tried, but I am thrilled that it is working. Thanks everyone for the support.