Help for this page

Select Code to Download


  1. or download this
    <Publisher>
      <UniqueDOI>978-3-642-123456</UniqueDOI>
    ...
        <Title Language="En">Is Light Blue (<Emphasis Type="Italic">azzurr
    +o</Emphasis>) Color Name Universal in the Italian Language?</Title>
      </ChapterInfo>
    </Publisher>
    
  2. or download this
    use XML::Simple;
    use Data::Dumper;
    my $XMLRef    = XMLin('new.xml');
    print Dumper $XMLRef;
    
  3. or download this
    use XML::LibXML::Simple   ();
    use Data::Dumper;
    ...
    my $xs   = XML::LibXML::Simple->new(%options);
    my $XMLRef = $xs->XMLin('new.xml');
    print Dumper $XMLRef;
    
  4. or download this
    use XML::Twig;
    use Data::Dumper;
    my $twig=XML::Twig->new();
    my $XMLRef = $twig->parsefile( 'new.xml' )->simplify(); 
    print Dumper $XMLRef;
    
  5. or download this
    'ChapterTitle' => {
        'Emphasis' => {
    ...
            ') Color Name Univeral in the Italian Language?'
        ]
    },
    
  6. or download this
    'ChapterTitle' => {
        'Language' => 'En',
    ...
            'Is Light Blue (<Emphasis Type="Italic">azzurro</Emphasis>) Co
    +lor Name Univeral in the Italian Language?'
        ]
    },