12 lines
173 B
Perl
12 lines
173 B
Perl
#if ( exists($hash{$key} ) ) {
|
|
# # ..
|
|
#}
|
|
|
|
|
|
$hash{"Name"} = "A";
|
|
$hash{"Address"} = "B";
|
|
$hash{"City"} = "C";
|
|
|
|
if ( exists($hash{"City"} ) ) {
|
|
print 'exists';
|
|
} |