Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^4: Open in for loop/array structure

by ikegami (Patriarch)
on Jun 03, 2008 at 00:02 UTC ( [id://689777]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Open in for loop/array structure
in thread Open in for loop/array structure

$filename = <$FN[$k]>; is still bad, though. Using glob without looping over its results makes no sense.
use strict; use warnings; my @FN = qw( a b ); for my $k (0..$#FN) { my $filename = <$FN[$k]>; print("$filename\n"); }
a Use of uninitialized value in concatenation (.) or string at 689777.pl + line 6.

If @FN contains glob patterns, then he wants

for (@FN) { while (defined(my $filename = glob($_))) { ... } }

If @FN contains file names (as it seems to), then he wants

for my $filename (@FN) { ... }

Although it looks like @FN isn't needed at all.

for (0..18, 20..28, 30..38) { my $filename = sprintf('out-02-%02d.txt', $_); ... }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-03-28 19:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found