use strict; use warnings; use XML::XPath; my $xml = q| Robert A+ |; my $xp = XML::XPath->new(xml => $xml); my $nodeset = $xp->find('/descendant-or-self::comment()'); foreach my $node ($nodeset->get_nodelist) { print "FOUND\n", $node->getValue, "\n"; }