A question about EOF

S

SL_McManus

Hi All;

I'm fairly new to PERL. The problem I am running into is that I
need to chop the last line of the output file and place the count
record on that line. As it stands, there is a blank space and this
creates a problem. What can I do to test for an EOF condition, then
chop the last line? Thanks.


open(OUTFILE,'>' .$outfile) || die "cannot create $outfile: $!\n";

%priminput = ();
foreach $line (@firstlist) {
$priminput{$line} = 1;
print OUTFILE "$line \n";
# if (eof) {
# chop $line;
# }
}
{
for ($lineread=0; $lineread<=@firstlist;$lineread++) {
}
$x = $lineread / $linecount;
$x = sprintf ( "%.0f", $x );
print OUTFILE "CR $x\n";
}


close(OUTFILE);
print "finished!\n";
1;
__END__
 
J

Jim Gibson

SL_McManus said:
Hi All;

I'm fairly new to PERL. The problem I am running into is that I
need to chop the last line of the output file and place the count
record on that line. As it stands, there is a blank space and this
creates a problem. What can I do to test for an EOF condition, then
chop the last line? Thanks.

What EOF are you looking for? The output file? Or some input file, that
you haven't shown? The program below does not run because $outfile has
not been defined and $linecount is zero.

If you are wanting to know what is the last element of @array, use the
$#array variable, which is the subscript of the last element. You can
do a loop like the following:

for my $i ( 0 .. $#firstlist ) {
if( $i == $#firstlist ) {
print OUTFILE $firstlist[$i] . scalar(@firstlist) . "\n";
}else{
print OUTFILE $firstlist[$i] . "\n";
}
}
open(OUTFILE,'>' .$outfile) || die "cannot create $outfile: $!\n";

%priminput = ();
foreach $line (@firstlist) {
$priminput{$line} = 1;
print OUTFILE "$line \n";
# if (eof) {
# chop $line;
# }
}
{
for ($lineread=0; $lineread<=@firstlist;$lineread++) {
}
$x = $lineread / $linecount;
$x = sprintf ( "%.0f", $x );
print OUTFILE "CR $x\n";
}


close(OUTFILE);
print "finished!\n";
1;
__END__

You will get better answers if you post complete, working programs that
are as short as possible.

Also, this group is defunct and shouldn't be used. Try
comp.lang.perl.misc in the future for better responses.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,263
Messages
2,571,061
Members
48,769
Latest member
Clifft

Latest Threads

Top