in reply to Why do I get this error?
$" is a special variable defining how array elements are separated within a string interpolation. Its set by default, if its missing now then YOU must have set it to undef before. See $LIST_SEPARATOR in perlvar
Do you use strict and warnings?
Why do you iterate so complicated instead of using a foreach $elem (@array) ... etc ?
Why a string interpolation instead of join "\t", @$elem ?
Cheers Rolf
( addicted to the Perl Programming Language)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Why do I get this error?
by Anonymous Monk on May 12, 2014 at 00:49 UTC | |
by LanX (Saint) on May 12, 2014 at 00:58 UTC | |
by Anonymous Monk on May 12, 2014 at 01:02 UTC | |
by Anonymous Monk on May 12, 2014 at 00:53 UTC | |
by LanX (Saint) on May 12, 2014 at 01:00 UTC |