|< 1 2 3 >| | 24 Einträge, 3 Seiten |
Quote$string_result=work_with_file($_, $fh, \%hash);
sub work_with_file {
my ( $filename, $fh, %hash) = @_;
....
...
$hash{$dt} = $lines if $errorFound;
return $string_result = "!!!!!!!"
}
1
2
3
4
5
6
7
8
sub work_with_file {
my ( $filename, $fh, \%hash) = @_;
.....
.....
\$hash->{$dt} = $lines if $errorFound;
}
work_with_file($_, $fh, \%hash);
1
2
3
4
5
6
7
8
9
10
11
12
sub work_with_file {
my ( $filename, $fh, $hash) = @_;
.....
.....
$hash->{$dt} = $lines if $errorFound;
}
work_with_file($_, $fh, \%hash);
foreach my $key (sort keys %hash) {
print $fh "$key:\n$hash{$key}\n";
}
|< 1 2 3 >| | 24 Einträge, 3 Seiten |