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

Re: how do foreach and while affect an array?

by superfrink (Curate)
on Sep 12, 2004 at 16:58 UTC ( [id://390445]=note: print w/replies, xml ) Need Help??


in reply to how do foreach and while affect an array?

Looping over an array does not actually change it's contents (as far as I know, maybe there are some special arrays).
use Data::Dumper; @arr = (1,2,3); print Dumper(\@arr); foreach $i (@arr) { # not doing or changing anything here. } print Dumper(\@arr);
Shows that the array contents have not been changed. The same should hold for while loops.

Update: I guess I will mention that in PHP there are loop counters that you sometimes have to reset each time you want to iterate over an array. I don't know of anything like that in Perl though. Maybe that's where this question came from.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-26 05:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found