#!/usr/bin/perl use 5.14.0; use warnings; use XML::LibXML; use Data::Dumper; my $dom = XML::LibXML->load_xml(string => <<'EOT'); String Misst super bei Schwelastverkehr EOT my $xpath = '/Model/packagedElement'; my @nodes = $dom->findnodes($xpath); for my $node (@nodes) { say join ", ", map {$_->getName() . " -> " . $_->getValue()} $node->attributes(); }