Thread string in zahl (13 answers)
Opened by kale_1990 at 2006-09-15 10:44

vayu
 2006-09-15 14:00
#69903 #69903
User since
2005-01-13
782 Artikel
BenutzerIn
[default_avatar]
ok entschuldige, doof ausgedrückt

es ist egal

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

my $bd = "3";

if($bd eq "3") {
print "bla";
}
if($bd == 3) {
print "bla";
}


der skalar $bd (als string angegeben) wird je nach bedarf als string, oder als integer ausgewertet

View full thread string in zahl