in reply to What is correct way to reference?

After you have solved the parse problem, you still have to print and array of an unknown number of strings. Use print rather than printf.
{ local $, = "\n"; my $ref = $xmlcollection->{phone}->{callTo}; print @{$ref}, "\n"; }
Bill

Replies are listed 'Best First'.
Re^2: What is correct way to reference?
by BradV (Sexton) on May 23, 2017 at 13:10 UTC
    OK, yes using XML::Simple. Will look at moving up. I've run into another problem where it is having more problems. Got to get the right tool. :) thanks for all the replies!