//Info/Other[Type/text()="LN"]/Id #### use strict; use warnings; use XML::LibXML qw( ); my $root = XML::LibXML->new->parse_fh(*DATA)->documentElement(); for my $node ( $root->findnodes( '//Info/Other[Type/text()="LN"]/Id' ) ) { print($node->textContent(), "\n"); } __DATA__ ... #### WXY12345678 12345678XZW