978-3-642-123456
Is Light Blue (azzurro) Color Name Universal in the Italian Language?
####
use XML::Simple;
use Data::Dumper;
my $XMLRef = XMLin('new.xml');
print Dumper $XMLRef;
####
use XML::LibXML::Simple ();
use Data::Dumper;
my $xs = XML::LibXML::Simple->new(%options);
my $XMLRef = $xs->XMLin('new.xml');
print Dumper $XMLRef;
####
use XML::Twig;
use Data::Dumper;
my $twig=XML::Twig->new();
my $XMLRef = $twig->parsefile( 'new.xml' )->simplify();
print Dumper $XMLRef;
####
'ChapterTitle' => {
'Emphasis' => {
'Type' => 'Italic',
'content' => 'azzurro
},
'Language' => 'En',
'content' => [
'Is Light Blue (',
') Color Name Univeral in the Italian Language?'
]
},
####
'ChapterTitle' => {
'Language' => 'En',
'content' => [
'Is Light Blue (azzurro) Color Name Univeral in the Italian Language?'
]
},