Thread Hilfe 2: :( (45 answers)
Opened by Klint at 2003-08-27 15:11

renee
 2003-08-27 19:57
#80852 #80852
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
[quote=Klint,27.08.2003, 17:53][/quote]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- <bottlers.pl> ----------------------------------
#!perl -w

@bottlers = ("Signatory","Gordon \& MacPhail", #hier ne Änderung
"The bottlers");
print "Abfüller:\n";
foreach $bottler (@bottlers) {
print "- $bottler\n;
}
print "\nUnd nun das Ganze alphabetisch sortiert:\n";
@sorted = sort @bottlers;
$number_of_elements = @sorted;
for($i=0;$i < $number_of_elements;$i++) { # hier vor $i++
print "- " . $sorted[$i] ."\n";
}
--- </bottlers.pl> ----------------------------------
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Hilfe 2: :(