Quantcast
Viewing latest article 2
Browse Latest Browse All 5

Answer by jshy for Extracting only the values of xml removing the xml tag

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


Viewing latest article 2
Browse Latest Browse All 5

Trending Articles