use strict;use warnings;use features qw/say/;use Mojo::DOM;my $dom = Mojo::DOM->new('<title> hello <name> hi </name> <street> id </street> this is xml file </title>');say $dom->all_text;# hello hi id this is xml filesay $dom->at('title')->all_text;# hello
You get the idea