Thread falsche bedingung in if-block ?! (12 answers)
Opened by popcorn5 at 2005-10-21 10:42

esskar
 2005-10-21 11:40
#59104 #59104
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
@ronnie, format_c:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Dokumente und Einstellungen\sak>perl
use strict;
use warnings;
print ("" eq "");
^Z
1
C:\Dokumente und Einstellungen\sak>perl
use strict;
use warnings;

my @test = ("1", "");
if($test[1] eq "") {
print "foo\n";
}
^Z
foo

C:\Dokumente und Einstellungen\sak>


man sieht also, denn code denn du gepostet hast, spiegelt nicht deine wahrheit wieder.

View full thread falsche bedingung in if-block ?!