#!/usr/bin/perl use strict; use warnings; use XML::Simple; use Data::Dumper; my $string; { local $/; $string = ; } my $ref = XMLin( $string ); print Dumper $ref; __DATA__ Titel 1 ... ... Titel 2 ... ... Titel 3 ... ...