Hi ,
The script with a
while to read is :
#!perl
use strict;
my $ln = 9;
my $contents;
open (Fnm , "a.dat");
while ($contents = <Fnm>){
chomp;
if ($ln == 9){
close Fnm;
$ln = 0;
}
print "[ $contents ]\n";
}
__END__
[ one
]
The line that shows is just the first one after closing the contents at the start of the loop
The script with the
foreach to read is :
#!perl
use strict;
my $ln = 9;
my $contents;
foreach $contents(<Fnm>){
chomp;
if ($ln == 9){
close Fnm;
$ln = 0;
}
print "[ $contents ]\n";
}
__END__
[ one
]
[ next
]
[ next
]
[ next
]
[ next
]
The line that shows is all in the data , even if one closes the file at the start of the
foreach , cause the contents are first stored in an anonymous array and then read from that array and hence the foreach is not that one uses to read large chunk of data
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.