0
votes
2answers
56 views

How is the scalar $keys getting value 1 instead of undef?

Folks, As far as my understanding goes, exists function would check for existence of a key in a hash. So for the below mentioned situation, key1 or key2 have not been defined. Going by that the hash ...
1
vote
1answer
199 views

perl how to use exists to check if hash is in array of hashes

i have two array of hashes: AH1 and AH2. $AH1 = [ { 'id' => 123, 'name' => abc }, { 'id' => 456, ...
2
votes
4answers
138 views

Can anyone explain why foreach worked but not map

I tried to put key-value pairs at %hash1 if key exists in %hash There is one element in array for which there is no entry at %hash ex: @array = (1,2,3,4,5); #there is no hash entry for key 1 at %hash ...
1
vote
2answers
337 views

Perl - testing existence of key in hash reference that is member variable

I get the error "Not a HASH reference" with the following code. What is the proper way to test exists in a hash reference that's a member variable of a class? package TestClass; sub new { my ...
0
votes
1answer
139 views

Why is testing if a key exists in a hash not working for ref to hash?

How do tell if a key exists in a has, when I have a reference to the hash? The following seemed simple and obvious (at my level of expertise) but prints out something other than expected: %simple = ...
2
votes
1answer
463 views

Perl LWP::Simple::getstore How to check if the file exists in destination directory

In my Perl script I am using LWP::Simple::getstore to retrieve an image and store as file. But before storing how to check if that file already exists? this is the snippet use constant FILE_DIR ...
6
votes
1answer
4k views

How can I test if a filename matching a pattern exists in Perl?

Can I do something like this in Perl? Meaning pattern match on a file name and check whether it exists. if(-e "*.file") { #Do something } I know the longer solution of asking ...
2
votes
4answers
2k views

Perl - If table does not exist

I'm currently using the following which works but throws an error every time the table is created (as it is first trying to insert into a db which does not exist and returning false). $result = ...
5
votes
3answers
9k views

How can I determine if a Perl hash contains a key mapping to an undefined value?

I need to determine if a Perl hash has a given key, but that key will be mapped to an undef value. Specifically, the motivation for this is seeing if boolean flags while using getopt() with a hash ...
2
votes
2answers
2k views

How do I check if a key exists in a hash in Perl?

I want to check if parameter $PGkey is equal to a key with the same name inside a hash table. Further, I want to do it in a format as close to this as possible: while(<PARAdef>) { ...
4
votes
5answers
615 views

Additional hash lookup using 'exists'?

I sometimes access a hash like this: if(exists $ids{$name}){ $id = $ids{$name}; } Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...