Thread methode zur datentypbestimmung (4 answers)
Opened by norman at 2006-01-28 12:03

norman
 2006-01-28 12:03
#62376 #62376
User since
2004-03-11
46 Artikel
BenutzerIn
[default_avatar]
guten morgen,

gibt es einen standard den datentyp von perlstrukturen zu bestimmen?

Code: (dl )
1
2
3
4
5
6
7
8
my %types = (
hash => {},
array => [],
string => "abc",
int => 123
sub => \&my_sub
...
);


kann damit arbeiten?

Code: (dl )
1
2
if($types{array} =~ /^ARRAY/) { print "ein array"; }
if($types{hash} =~ /^HASH/) { print "ein hash"; }


gruß,
norman

View full thread methode zur datentypbestimmung