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 have Perl script and need to determine the full path and filename of
I need to determine which pages of a Word document that a keyword occurs
I need to determine if user has already visited a page, for tracking unique
I need to determine the height of a string (in given scale and font)
Given a UIColor, I need to determine if it is light or dark. If
I need to determine which version of GTK+ is installed on Ubuntu Man does
I need to determine if a Class object representing an interface extends another interface,
I need to determine the ID of a form field from within an action
I need to determine the current year in Java as an integer. I could
I need to determine the highest .NET framework version installed on a desktop machine

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.