#!/usr/bin/perl use XML::Simple; local $/ = undef; $xml_data = ; $xml_simple = XML::Simple->new( KeepRoot => 1, KeyAttr => 1, ForceArray => 1 ); $xml_obj_data = $xml_simple->XMLin($xml_data); use Data::Dumper; print Dumper($xml_obj_data); __DATA__ 1 Line 1 Text. 2 Line 2 Text. More Line 2 Text.