in reply to Re: XML::Simple hash tree structure not consistent
in thread XML::Simple hash tree structure not consistent

I already have code that will loop through $tree but in this case I don't care about the order. I just need to access the values within or see if any values exist.

for example:
$foundit=$tree->{'PlayGround'}{'Development'}{'somthingelse'}{'another +thing'};
or
$foundit=$tree->{project}{'PlayGround'}{state}{'Development'}{cluster} +{'somthingelse'}{server}{'anotherthing'};

Replies are listed 'Best First'.
Re^3: XML::Simple hash tree structure not consistent
by riddlemethisbatman (Initiate) on Mar 31, 2007 at 16:08 UTC
    Does anyone know if this can be done with a different PM?