Open In App

Perl | each() Function

This function returns a Two-element list consisting of the key and value pair for the next element of a hash when called in List context, so that you can iterate over it. Whereas it returns only the key for the next element of the hash when called in scalar context.

Syntax: each MY_HASH
Parameter:
MY_HASH is passed as a parameter to this function



Returns:
A 2-element list of key-value pairs for the List context whereas only the key for the scalar context.

Example 1:




#!/usr/bin/perl
  
# Initializing a Hash
%hash = (Geeks => 1, of => 2 , Geek => 3);
  
# each() function
while (($key, $value) = each(%hash))
{
      
    # Printing(key, value) pair
    print("$key = $value\n");
}

Output:

Geek = 3
of = 2
Geeks = 1

Example 2:




#!/usr/bin/perl
  
# Initializing a Hash
%hash = (Geeks, of, Geek);
  
# each() function for scalar context
while (($key) = each(%hash))
{
      
    # Printing(key)
    print("$key ");
}

Output:
Geek Geeks
Article Tags :