Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: map return to array reference

by liverpole (Monsignor)
on Jan 24, 2007 at 17:05 UTC ( [id://596288]=note: print w/replies, xml ) Need Help??


in reply to map return to array reference

Hi silent11,

Since you're assigning to an array reference (my $files_to_send = ...), you should enclose the results of the map in [ ... ]:

my $files_to_send = [ map {"$stage/$_.pdf"} @{$self->_getGood()} ];

Otherwise, you're assigning to the count of the items in the array (using the array in scalar context).

Oh, and you could also simplify @{$files_to_send} to just @$files_to_send.  In fact, if you don't care about printing newlines, you might make it really simple:

print "@$files_to_send\n";

s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-04-18 23:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found