Thread Datei einlesen - erste Zeile wird ignoriert
(11 answers)
Opened by pernox77 at 2010-10-11 12:19
Bessere Syntax:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/perl -w use strict; use warnings; use diagnostics; my $path = 'test.txt'; if (open my $file,"<$path") { my @file_rows = <$file>; if (scalar @file_rows) { print $file_rows[9]; print $file_rows[10]; } else { die "Datei ist leer\n" } } else { die $! } Last edited: 2010-10-11 12:39:44 +0200 (CEST) 10 print "Hallo"
20 goto 10 |