Leser: 2
|< 1 2 >| | 15 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
my %hash = ();
foreach my $i (@userdaten){
my ($ort, $land) = split(/\|\|\|/, $i);
$hash{$land}++;
}
my $x = 0;
foreach $i (sort{$a <=> $b} values %hash){
if($x < 10){
print;
$x++;
}
}
1
2
3
4
5
my %hash = ();
foreach my $i (@userdaten){
my ($ort, $land) = split(/\|\|\|/, $i);
$hash{$land}++;
}
1
2
3
4
5
6
7
8
my $x = 0;
foreach $i (sort{$a <=> $b} values %hash){
if($x < 10){
print;
$x++;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
my %hash = ();
foreach my $i (@userdaten)
{
my ($ort, $land) = split(/\|\|\|/, $i);
$hash{$land}++;
}
@sortiert = sort { $hash{$b} <=> $hash{$a} } keys %hash;
foreach(@sortiert)
{
$zahl = $hash{$_};
push(@laender, "$_|||$zahl\n");
}
for(0..9)
{
$hier = $laender[$_];
print "$hier<br>\n";
}
1 2 3 4
for ( (sort {$hash{$b} <=> $hash{$a}} keys %hash)[0..9] ) { last unless defined; print "$_ => $hash{$_}\n"; }
|< 1 2 >| | 15 Einträge, 2 Seiten |