$ perl -MXML::LibXML -e ' my $dom = XML::LibXML->load_xml(string => shift); print $_->to_literal(),"\n" for $dom->findnodes("/collection/document/*/text"),; ' "<text> Hello how are you</text>I am fine" #### Hello how are you I am fine