Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 580563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T14:29:10+00:00 2026-05-13T14:29:10+00:00

I need to determine if a Perl hash has a given key, but that

  • 0

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 reference passed into it. I’ve already searched both this site and google, and exists() and defined() don’t seem to be applicable for the situation, they just see if the value for a given key is undefined, they don’t check if the hash actually has the key. If I an RTFM here, please point me to the manual that explains this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T14:29:11+00:00Added an answer on May 13, 2026 at 2:29 pm

    exists() and defined() don’t seem to be applicable for the situation, they just see if the value for a given key is undefined, they don’t check if the hash actually has the key

    Incorrect. That is indeed what defined() does, but exists() does exactly what you want:

    my %hash = (
        key1 => 'value',
        key2 => undef,
    );
    
    foreach my $key (qw(key1 key2 key3))
    {
        print "\$hash{$key} exists: " . (exists $hash{$key} ? "yes" : "no") . "\n";
        print "\$hash{$key} is defined: " . (defined $hash{$key} ? "yes" : "no") . "\n";
    }
    

    produces:

    $hash{key1} exists: yes
    $hash{key1} is defined: yes
    $hash{key2} exists: yes
    $hash{key2} is defined: no
    $hash{key3} exists: no
    $hash{key3} is defined: no
    

    The documentation for these two functions is available at the command-line at perldoc -f defined and perldoc -f exists (or read the documentation for all methods at perldoc perlfunc*). The official web documentation is here:

    • http://perldoc.perl.org/functions/exists.html
    • http://perldoc.perl.org/functions/defined.html

    *Since you specifically mentioned RTFM and you may not be aware of the locations of the Perl documentation, let me also point out that you can get a full index of all the perldocs at perldoc perl or at http://perldoc.perl.org.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to determine if the key of a new key value pair is
I need to determine if a given selection is in between a start line
I need to determine whether there is a resource file for the given CultureInfo
I need to determine whether a particular system has 32-bit Java installed. I'm doing
I need a library which will take in two regular expressions and determine whether
I need to determine if the value of a NumericUpDown control was changed by
I'm not so strong with arrays but I need to determine how to count
I need to determine whether a Dictionary I receive in a function has a
I have Perl script and need to determine the full path and filename of
I need to determine whether a string matches one substring, but not another. For

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.