Places To Visit Location 1 United States Utah Salt Lake City Location 2 United States Rhode Island Providence Location 3 United States Wisconsin Green Bay Location 4 United States Wyoming Casper #### #!/usr/bin/perl use strict; use warnings; use XML::LibXML; my $xml = XML::LibXML->load_xml(location => 'locations.xml'); foreach my $node2 ($xml->findnodes('//Place')) { my $attr; foreach( $node2->findnodes('./ExtendedName/Data/@name') ) { $attr = $_->textContent(); if($attr eq "NAME_2" ) { print $_->textContent() . "\n"; } } }