Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^2: passing arrays

by ScOut3R (Sexton)
on Apr 19, 2008 at 17:40 UTC ( [id://681677]=note: print w/replies, xml ) Need Help??


in reply to Re: passing arrays
in thread passing arrays

I know grep! :) I'm passing the the $in variable to readlog() from csv() and returning the @mails array from it.
while (my $in = @data) { my @mails = readlog($in);
But i think nothing is coming back.

Replies are listed 'Best First'.
Re^3: passing arrays
by grep (Monsignor) on Apr 19, 2008 at 17:47 UTC
    Ahhhh... this is why you should reduce your code to the problem. I did not see that buried in the rest of your code.

    you want a foreach

    foreach my $in (@data) { my @mails = readlog($in);
    grep
    One dead unjugged rabbit fish later...
      You're absolutely right. Now the values are passing back, but i have a new problem to sort out. :)

Log In?
Username:
Password:

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

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

    No recent polls found