Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: split, Use of uninitialized value

by thelenm (Vicar)
on Jan 07, 2004 at 03:44 UTC ( [id://319335]=note: print w/replies, xml ) Need Help??


in reply to Re: split, Use of uninitialized value
in thread split, Use of uninitialized value

Autovivification doesn't happen in this case, e.g.

my $foo = [qw(a b c)]; if (defined $foo->[4]) { print "this will not print\n"; } print join('|', @$foo), "\n";

... prints "a|b|c" instead of "a|b|c||" as you would expect if autovivification had occurred.

-- Mike

--
XML::Simpler does not require XML::Parser or a SAX parser. It does require File::Slurp.
-- grantm, perldoc XML::Simpler

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://319335]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-19 04:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found