eide has asked for the wisdom of the Perl Monks concerning the following question:

Below is the very multi-layered XML I am using after being sent through Data Dumper:
$VAR1 = { 'client_system' => { 'Customer Care' => { 'business_area' => { 'XX Business Area' => { 'component' => [ { 'component_lib' => [ { 'class_set' => { 'XX Active Strategy 2' => { 'data_type' => '1', 'linked_characteristic_name' => 'ACLI-DAT +A.X9999-ACLI-4-MTH-AVG-UTIL', 'version' => '2.0', 'is_protected' => 'false', 'obj_info' => { 'XX Active Strategy 2' => { 'obj_revision' => '1', 'version' => '2.0', } }, 'base_class_set' => [ { 'interval' => { '500-899' => { 'outcome' => { '500-899' => { 'uniqueID' => '4', 'displayPosition' => '3' } }, 'range' => [ '500-899' ], 'is_Others' => [ 'false' ] }, 'low-199' => { 'outcome' => { 'low-199' => { 'uniqueID' => '2', 'displayPosition' => '1' } }, 'range' => [ 'low-199' ], 'is_Others' => [ 'false' ] }, 'Others' => { 'outcome' => { 'Others' => { 'uniqueID' => '1', 'displayPosition' => '214 +7483647' } }, 'is_Others' => [ 'true' ] }, '200-499' => { 'outcome' => { '200-499' => { 'uniqueID' => '3', 'displayPosition' => '2' } }, 'range' => [ '200-499' ], 'is_Others' => [ 'false' ] } } } ] } }, 'type' => 'class_set' } ] } ], 'analytics' => [ {} ] } }, 'signature' => 'XXXXCC', 'version' => '3.0', 'type' => 'Standalone', 'obj_info' => { 'Customer Care' => { 'obj_revision' => '-1', 'version' => '2.0', } } } }, 'version' => '2.1', 'buildNumber' => 'Version 1.3' };
I basically would have the class set name then want to print that along with the (four) interval ranges.
#!/usr/bin/perl use strict; use XML::Simple; use Data::Dumper; my $file = 'files/data.xml'; my $xs1 = XML::Simple->new(); my $doc = $xs1->XMLin($file, forcearray => 1); foreach my $key (keys (%{$doc->{client_system}})){ print $doc->{client_system}->{$key} . "\n"; print $doc->{client_system}->{$key}->{'business_area'} ? ; }
Basically need to traverse down this tree:
'client_system' => { 'Customer Care' => { 'business_area' => { 'XX Business Area' => { 'component' => [ { 'component_lib' => [ { 'class_set' => { 'XX Active Strategy 2' => { 'base_class_set' => [ { 'interval' => { '500-899' => { 'low-199' => { 'Others' => { '200-499' => {
Any help is appreciated.

Replies are listed 'Best First'.
Re: XML::Simple Multi-Layered
by wfsp (Abbot) on Aug 16, 2007 at 10:54 UTC
    I could only find 3 keys called 'range'.

    output:

    XX Active Strategy 2 low-199 500-899 200-499
    Is this something like you were after?

    update: the OP added more info while I was posting.

      I guess I am looking for a more general way to get data further into the tree. This is most of an example from perl-xml-quickstart:
      <?xml version="1.0"?> <camelids> <species name="Camelus bactrianus"> <common-name>Bactrian Camel</common-name> <physical-characteristics> <mass>450 to 500 kg.</mass> <appearance> The most noticeable feature of C. bactrianus is its two humps. </appearance> </physical-characteristics> <natural-history> <food-habits> Camels are herbivores. </food-habits> <reproduction> Mating season occurs in the fall, with inbreeding often invol +ved in domesticated camels. </reproduction> <behavior> Domestic camels travel in caravans across the desert. </behavior> <habitat> The camel's habitat consists mainly of Asia's deserts. </habitat> </natural-history> <conservation status="endangered"> <detail> Camels were thought to be extinct in the wild. </detail> </conservation> </species> <species name="Camelus dromedarius"> <common-name>Dromedary, or Arabian Camel</common-name> <physical-characteristics> <mass>300 to 690 kg.</mass> <appearance> The dromedary camel is characterized by a long-curved neck, de +ep-narrow chest, and a single hump. </appearance> </physical-characteristics> <natural-history> <food-habits> The dromedary camel is a herbivore. </food-habits> <reproduction> The dromedary camel has a lifespan of about 40-50 years. </reproduction> <behavior> With the exception of rutting males, dromedaries show very li +ttle aggressive behavior. </behavior> <habitat> The camels prefer desert conditions characterized by a long d +ry season and a short rainy season. </habitat> </natural-history> <conservation status="no special status"> <detail> Since the dromedary camel is domesticated, the camel has no sp +ecial status in conservation (Busch Gardens 1996). </detail> </conservation> </species> <species name="Lama glama"> <common-name>Llama</common-name> <physical-characteristics> <mass>130 to 155 kg.</mass> <appearance> Llamas feet are slender and their limbs are long. </appearance> </physical-characteristics> <natural-history> <food-habits> Llamas are herbivorous, feeding on many kinds of grasses and +leaves. </food-habits> <reproduction> Llamas reach sexual maturity at about 12-24 months. </reproduction> <behavior> The Lama glama lives only in domestication. </behavior> <habitat> Llamas are found in deserts, mountainous areas, and grassland +s. </habitat> </natural-history> <conservation status="no special status"> <detail> The population of llamas has declined since road building redu +ced their importance in transportation. </detail> </conservation> </species> <species name="Lama guanicoe"> <common-name>Guanaco</common-name> <physical-characteristics> <mass>115 to 140 kg.</mass> <appearance> They stand at 1,100 to 1,200mm at the shoulder and have slende +r bodies with long limbs and neck. </appearance> </physical-characteristics> <natural-history> <food-habits> Guanacos are herbivores that can inhabit dry areas and forego + drinking for long periods. </food-habits> <reproduction> Females are apparently induced ovulators. </reproduction> <behavior> There are three types of social groups: family groups, male t +roops, and solitary males. </behavior> <habitat> Guanacos inhabit grasslands and shrublands from sea level to +4,000m. Occasionally they winter in forests. </habitat> </natural-history> <conservation status="special concern"> <detail> Guanacos have had their numbers drastically reduced due to hum +an pressures of habitat encroachment, habitat destruction, and hunting. </detail> </conservation> </species> <species name="Vicugna vicugna"> <common-name>Vicuna</common-name> <physical-characteristics> <mass>35 to 65 kg.</mass> <appearance> The vicuna is the smallest living species among the family Cam +elidae. </appearance> </physical-characteristics> <natural-history> <food-habits> The vicuna is strictly a grazer. </food-habits> <reproduction> Mating begins in March and April. </reproduction> <behavior> Vicunas are alert and shy animals that flee very rapidly. </behavior> <habitat> Vicunas are found in semiarid rolling grasslands and plains at + altitudes of 3,500-5,750 meters. </habitat> </natural-history> <conservation status="endangered"> <detail> The vicuna is classified as vulnerable by the IUCN, and as end +angered by the USDI. </detail> </conservation> </species> </camelids>
      Some code to pull data from the XML:
      #!/usr/bin/perl use strict; use XML::Simple; my $file = 'files/camelids.xml'; my $xs1 = XML::Simple->new(); my $doc = $xs1->XMLin($file, forcearray => 1); foreach my $key (keys (%{$doc->{species}})){ print $doc->{species}->{$key}->{'common-name'}[0]; print " ($key) "; print "\n"; }
      I can get data from the species key and the common-name (one level in) but how do you get, say, the physical-characteristics->mass? things like:
      print $doc->{species}->{$key}->{'physical-characteristics'}[0];
      and
      print $doc->{species}->{$key}->{'physical-characteristics'}['mass'];
      only give the hashref. Do I need another foreach loop? Thanks
        Nearly, in both cases :-)
        print $doc->{species}{$key}{'physical-characteristics'}[0]{mass}[0] # and print $doc->{species}{$key}{'physical-characteristics'}[0]{appearance} +[0]
        The square brackets indicate array refs so you need an element index (a number). So ['mass'] won't work.