Thread Array-Indexzugruff nicht erkannt?: Use of uninitialized value in string ne (10 answers)
Opened by Herr_Cisie at 2006-04-12 13:23

bloonix
 2006-04-12 15:49
#64764 #64764
User since
2005-12-17
1615 Artikel
HausmeisterIn
[Homepage]
user image
[quote=Ronnie,12.04.2006, 13:17]
Code: (dl )
next unless @zeile;

wäre auch eine Möglichkeit.[/quote]
nicht ganz, da noch immer der gleiche Fehler ausgelöst wird,
wenn $zeile[1] leer ist und $zeile[0] nicht. Besser wäre da

Code: (dl )
next unless $zeile[1];


da $zeile[1] abgefragt wird...

Code: (dl )
if ($zeile[1] ne $alt){
What is a good module? That's hard to say.
What is good code? That's also hard to say.
One man's Thing of Beauty is another's man's Evil Hack.

View full thread Array-Indexzugruff nicht erkannt?: Use of uninitialized value in string ne