in reply to Re: element of an array of arrays
in thread element of an array of arrays

The joins were an attempt to correct the problem I was initially running into.

Without the joins, that syntax produced a similar error. But it was stating that I couldn't use the string "20130610" as an array reference. Using the joins produced the error with the entire row as the string I couldn't use.

Dyslexics Untie !!!

Replies are listed 'Best First'.
Re^3: element of an array of arrays
by LanX (Saint) on Jun 17, 2013 at 08:40 UTC
    Sorry I don't understand you!

    Could you plz give me an code example reproducing this other error?

    Maybe the problem is connected to the fact that you are trying to print the AoA in a whole

    print  @array

    ... this will result in a list of stringified array-refs.

    ARRAY(0x8bfc3f8) ...

    Better use Data::Dumper Dumper like kcott showed you or print the single subarrays to get the leaf-elements stringified.

    print "@$_\n" for @array;

    HTH

    Cheers Rolf

    ( addicted to the Perl Programming Language)