in reply to XML::Simple question

If the following works for the first element:

$config->{server}{atlas}{address}->[0]
Then try
my @array = @{$config->{server}{atlas}{address}};

Replies are listed 'Best First'.
Re: Re: XML::Simple question
by The Mad Hatter (Priest) on Mar 19, 2004 at 14:11 UTC
    That puts the values in an array. What the OP seems to want is a space separated string of the values, or something like (using your example): my $address = "@array";