#!/usr/bin/perl -w use XML::Simple; use Data::Dumper; $xml = ' '; my $c = XMLin($xml); # substitute filename for $xml here print Dumper($c); __END__