Thread Array/String manipulieren (6 answers)
Opened by Nina at 2005-11-10 17:20

sesth
 2005-11-10 18:41
#59942 #59942
User since
2005-02-01
181 Artikel
BenutzerIn
[default_avatar]
Oder war dies gemeint?
Code (perl): (dl )
1
2
3
4
5
6
my $zaehl = 0xFFC10000;
my @array = 13..27;            # Beispieldaten
foreach my $val (@array) {
    printf "%08X: %08X|n", $zaehl, $val;
    $zaehl += 0x10;
}

|n steht für \n (wird sonst verschluckt).\n\n

<!--EDIT|sesth|1131641020-->
Gruß
Thomas

View full thread Array/String manipulieren