9 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict,
use warnings;
my $file = '/path/to/file';
my @array;
{
local $/ = "\n//\n";
open my $fh,'<',$file or die $!;
@array = <$fh>;
chomp @array;
close $fh;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict,
use warnings;
my $file = '/path/to/file';
my @array;
{
local $/ = "\n//\n";
open my $fh,'<',$file or die $!;
@array = <$fh>;
chomp @array;
close $fh;
}
Quote...und dabei jeden eintrag im array[$index] abspeichern
9 Einträge, 1 Seite |