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

Re: passing array to a sub

by George_Sherston (Vicar)
on Aug 25, 2001 at 15:42 UTC ( [id://107812]=note: print w/replies, xml ) Need Help??


in reply to passing array to a sub

I don't think the problem can be in how you pass the values, because this works:
$s1 = "first scalar"; $s2 = "second scalar"; @a1 = ("first item","second item","third item","fourth item"); &example($s1, $s2, @a1); sub example { $es1 = shift;$es2 = shift;@ea1 = @_; print "S1: $es1\n"; print "S2: $es2\n"; print "ARRAY:\n"; for $i (@ea1) {print "$i ; "} } #prints the following: #S1: first scalar #S2: second scalar #ARRAY: #first item ; second item ; third item ; fourth item ;
So the problem must be somewhere else - perhaps in what you are doing with the sub, or how you define the variables before passing them. More detail?

§ George Sherston

Replies are listed 'Best First'.
Re: Re: passing array to a sub
by pitbull3000 (Beadle) on Aug 25, 2001 at 15:46 UTC
    shame on my empty head, the problem was as you both stated, in the code before passing the variables. the array was empty, so i couldnt get any value

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-26 04:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found