use Data::Dumper; use XML::Simple; my $ref = XMLin(\*DATA); print Dumper($ref); __DATA__ Smashing Pumpkins I Am One Foo Fighters Smashing Pumpkins The Shield Soundtrack #### $VAR1 = { 'cd' => [ { 'artists' => { 'artist' => 'Smashing Pumpkins' }, 'serial' => '001', 'title' => 'I Am One' }, { 'artists' => { 'artist' => [ 'Foo Fighters', 'Smashing Pumpkins' ] }, 'serial' => '002', 'title' => 'The Shield Soundtrack' } ] };