Thread Variablenname mit Variable
(10 answers)
Opened by Hagen at 2008-12-14 00:59 Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 use strict; use warnings; my @text; $text[0] = '0. Text'; $text[1] = '1. Text'; $text[2] = '2. Text'; $text[3] = '3. Text'; # alternativ und kürzer # my @text=( '0. Text', '1. Text', '2. Text', '3. Text'); foreach my $item (1..3) { print "Item : $item\n"; print "Inhalt: ".$text[$item]."\n"; } # foreach __END__ Item : 1 Inhalt: 1. Text Item : 2 Inhalt: 2. Text Item : 3 Inhalt: 3. Text Quote welche Klammern hast du genommen? Wofür? Indizes? dann @Array mit [ ] Wörter? dann %Hash mit { } me and my writeups
|