Thread Warum Use of uninitialized value within @array? (3 answers)
Opened by bianca at 2016-01-04 19:27

Raubtier
 2016-01-04 19:49
#183394 #183394
User since
2012-05-04
1076 Artikel
BenutzerIn
[default_avatar]
Quote
Code (perl): (dl )
while (scalar(@inhalt) > ($ze + $anzahl) && $inhalt[$ze + $anzahl + 1] eq ' ') {

Nimm doch mal an, dass das Array die Länge 1 hat.
1 > 0 + 0 ist true, aber du greifst auf $inhalt[0 + 0 + 1] zu, und das gibt es nicht.
Last edited: 2016-01-04 19:51:45 +0100 (CET)

View full thread Warum Use of uninitialized value within @array?