FreeKB (2024)

Perl (Scripting) - Count keys and values in a hash

FreeKB (1)

In Perl, there are 2different kinds of hashes.

  • A hash, which is defined by the % and ( ) characters - %hash = ( );
  • A reference hash, which is defined with the $ and { } characters - $hash = { };

Empty hash

Let's say you have the following empty hash that contains no keys and no values.

my %hash;

The following can be used to print the number of keys and values in the hash.

my $keys = keys %hash;my $values = values %hash;print "keys = $keys \n";print "values = $values \n";

Which should return the following.

keys = 0values = 0

Hash with keys and values

Let's append some keys and values. In this example, the hash has three keys (employee, id,department) and three values (John Doe, 123456, Engineering)

my %hash;$hash{employee} = "John Doe";$hash{id} = "123456";$hash{department} = "Engineering";

Print the number of keys and values in the hash.

my $keys = keys %hash;my $values = values %hash;print "keys = $keys \n";print "values = $values \n";

Which should return the following.

keys = 3values = 3

Did you find this article helpful?

If so, consider buying me a coffee over at FreeKB (2)


FreeKB (2024)
Top Articles
20/4/10 Rule Calculator - Calculator Academy
Making It Big On Wall Street
Netr Aerial Viewer
Craigslist Warren Michigan Free Stuff
Promotional Code For Spades Royale
Ups Dropoff Location Near Me
South Park Season 26 Kisscartoon
Ds Cuts Saugus
Martha's Vineyard Ferry Schedules 2024
Hawkeye 2021 123Movies
DL1678 (DAL1678) Delta Historial y rastreo de vuelos - FlightAware
Walgreens Alma School And Dynamite
Khatrimaza Movies
Www Movieswood Com
Top Golf 3000 Clubs
Culver's Flavor Of The Day Monroe
Baseball-Reference Com
Sitcoms Online Message Board
The Binding of Isaac
Scholarships | New Mexico State University
735 Reeds Avenue 737 & 739 Reeds Ave., Red Bluff, CA 96080 - MLS# 20240686 | CENTURY 21
Inside the life of 17-year-old Charli D'Amelio, the most popular TikTok star in the world who now has her own TV show and clothing line
Swgoh Turn Meter Reduction Teams
Timeforce Choctaw
Downtown Dispensary Promo Code
Umn Biology
Kuttymovies. Com
Emuaid Max First Aid Ointment 2 Ounce Fake Review Analysis
Marlene2295
Noaa Marine Forecast Florida By Zone
Nacogdoches, Texas: Step Back in Time in Texas' Oldest Town
Weekly Math Review Q4 3
Black Adam Showtimes Near Amc Deptford 8
Crystal Mcbooty
Ross Dress For Less Hiring Near Me
Ferguson Showroom West Chester Pa
The Angel Next Door Spoils Me Rotten Gogoanime
All-New Webkinz FAQ | WKN: Webkinz Newz
Tinfoil Unable To Start Software 2022
Trending mods at Kenshi Nexus
Dragon Ball Super Card Game Announces Next Set: Realm Of The Gods
Hello – Cornerstone Chapel
Dying Light Mother's Day Roof
How to Find Mugshots: 11 Steps (with Pictures) - wikiHow
Suppress Spell Damage Poe
Gear Bicycle Sales Butler Pa
Zom 100 Mbti
Black Adam Showtimes Near Cinemark Texarkana 14
Intuitive Astrology with Molly McCord
Latest Posts
Article information

Author: Cheryll Lueilwitz

Last Updated:

Views: 6775

Rating: 4.3 / 5 (74 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Cheryll Lueilwitz

Birthday: 1997-12-23

Address: 4653 O'Kon Hill, Lake Juanstad, AR 65469

Phone: +494124489301

Job: Marketing Representative

Hobby: Reading, Ice skating, Foraging, BASE jumping, Hiking, Skateboarding, Kayaking

Introduction: My name is Cheryll Lueilwitz, I am a sparkling, clean, super, lucky, joyous, outstanding, lucky person who loves writing and wants to share my knowledge and understanding with you.