Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re^2: Perlplexation - foreach shoulda Known (Rosetta: Perl, Python, Ruby)

by eyepopslikeamosquito (Archbishop)
on Apr 13, 2012 at 21:51 UTC ( [id://965000]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    x = [ 'apple', 'banana', 'orange' ]
    for i, val in enumerate(x): print i, val
    
  2. or download this
    0 apple
    1 banana
    2 orange
    
  3. or download this
    x = [ 'apple', 'banana', 'orange' ]
    x.each_with_index { |val, i| print "#{i} #{val}\n" }
    
  4. or download this
    use List::MoreUtils qw(each_array);
    my @x = ( 'apple', 'banana', 'orange' );
    ...
    while ( my ($i, $val) = $it->() ) {
        print "$i $val\n";
    }
    
  5. or download this
    my @x = ( 'apple', 'banana', 'orange' );
    while ( my ($i, $val) = each @x ) {
        print "$i $val\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-16 13:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found