Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.3K+ articles
School Learning
11.1K+ articles
Misc
7.7K+ articles
Perl
258+ articles
Perl-function
59+ articles
Perl-Hash-Functions
6+ articles
Perl-hashes
10 posts
Recent Articles
Popular Articles
Coercions in Perl
Last Updated: 15 July 2025
In Perl, there are values of different types like strings, integers, rational numbers, and more. Coercion is responsible for converting one data type of data or object to ...
read more
Perl
Picked
Perl-hashes
Perl-function
Perl - Creating a Hash from an Array
Last Updated: 15 July 2025
Hashing is the process of converting a given key into another value. A hash function is used to generate the new value (called hash) according to a mathematical algorithm....
read more
Misc
Perl
Picked
Perl-hashes
Perl | Useful Hash functions
Last Updated: 12 July 2025
A hash is a set of key-value pairs. Perl stores elements of a hash such that it searches for the values based on its keys. Perl provides various functions to perform opera...
read more
Perl
Perl-hashes
Perl-Hash-Functions
Perl | Multidimensional Hashes
Last Updated: 12 July 2025
Prerequisite: Hashes-BasicsIntroductionBeyond the normal constraints of the hashes, we can also create complex structures made up of combinations of two. These are nested ...
read more
Perl
Picked
Perl-hashes
Perl | Hash in Scalar and List Context
Last Updated: 11 July 2025
Prerequisite: Perl HashHash in Perl is a set of key/value pairs. Perl provides us the flexibility to assign the hash to a List type and a Scalar type, known as LIST Contex...
read more
Perl
Picked
Perl-hashes
Perl | Hash Operations
Last Updated: 11 July 2025
Prerequisite: Perl Hashes, Perl HashAs most readers likely know, the hash stores data by using a mechanism called Hashing. In hashing, a key is used to determine a value ...
read more
Perl
Picked
perl-basics
Perl-hashes
Perl Hash
Last Updated: 11 July 2025
A hash is a set of key-value pairs. Perl stores elements of a hash such that it searches for the values based on its keys. Hash variables start with a '%' sign.Perl requir...
read more
Perl
Picked
Perl-hashes
Perl | each() Function
Last Updated: 25 June 2019
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. ...
read more
Perl
Perl-hashes
Perl-function
Perl-Hash-Functions
Sorting Hash in Perl
Last Updated: 11 July 2025
Prerequisite: Perl | Hashes Set of key/value pair is called a Hash. Each key in a hash structure are unique and of type strings. The values associated with these keys are ...
read more
Perl
Perl-hashes
Perl | Hashes
Last Updated: 11 July 2025
Set of key/value pair is called a Hash. Each key in a hash structure are unique and of type strings. The values associated with these keys are scalar. These values can eit...
read more
Misc
Perl
Perl-hashes