use strict; use XML::XPath; my $xml = ' 1234 Box Suitcase '; my $xp = XML::XPath->new( xml => $xml ); my $path = '/SuperItem/MajorItems[2]/MinorItem'; print $xp->findnodes_as_string($path); #### Suitcase
## Suitcase