Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Using open in for loop

by grep (Monsignor)
on Jun 14, 2007 at 14:06 UTC ( [id://621238]=note: print w/replies, xml ) Need Help??


in reply to Using open in for loop

That is not perl code. It won't even compile.

I assume you mean something more like this:

use strict; use warnings; my @array = qw/ foo bar baz blah /; for(my $i = 0; $i < @array; $i++) { print "$i $array[$i]\n"; }
Which is fine but this is better:
use strict; use warnings; my @array = qw/ foo bar baz blah /; foreach my $filename (@array) { print "$filename\n"; }

Please notice I added use strict; and use warnings these are a MUST when you are learning perl.

Also notice I did not use the actual open - I simplified to find the real root of the problem

grep
1)Gain XP 2)??? 3)Profit

Log In?
Username:
Password:

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

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

    No recent polls found