Tutorials
Courses
Go Premium
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.0K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.1K+ articles
School Learning
11.1K+ articles
Perl
258+ articles
Perl-function
59+ articles
Perl-regex
18+ articles
Perl-Array-Functions
8+ articles
Perl-Arrays
10 posts
Recent Articles
Popular Articles
Perl - Arrays vs Lists
Last Updated: 15 July 2025
Perl is a general-purpose, interpreted, dynamic programming languages. Perl has three basic data types namely, scalars, arrays and hashes. Perl ListsThe list is a sequence...
read more
Perl
Picked
Perl-Arrays
perl-list
Perl | Multidimensional Arrays
Last Updated: 12 July 2025
Multidimensional arrays in Perl are the arrays with more than one dimension. Technically there is no such thing as a multidimensional array in Perl but arrays are used to ...
read more
Perl
Picked
Perl-Arrays
Perl | Array Slices
Last Updated: 12 July 2025
In Perl, array is a special type of variable. The array is used to store the list of values and each object of the list is termed as an element. Elements can either be a n...
read more
Perl
Perl-Arrays
Perl | Useful Array functions
Last Updated: 12 July 2025
In Perl, array is a special type of variable. The array is used to store the list of values and each object of the list is termed as an element. Elements can either be a n...
read more
Perl
Perl-function
Perl-Arrays
Perl-Array-Functions
Perl | grep() Function
Last Updated: 11 July 2025
The grep() function in Perl used to extract any element from the given array which evaluates the true value for the given regular expression.Syntax: grep(Expression, @Arra...
read more
Perl
Perl-function
Perl-regex
Perl-Arrays
Perl-Array-Functions
Perl | Sorting of Arrays
Last Updated: 07 May 2019
Perl has a built-in sort() function to sort an array of alphabets and numbers. When an array is passed to the sort() function it returns a sorted array.Syntax: sort @Array...
read more
Perl
Picked
Perl-Arrays
Perl | List Functions
Last Updated: 11 July 2025
A list in Perl is a collection of scalar values. We can access the elements of a list using indexes. Index starts with 0 (0th index refers to the first element of the list...
read more
Perl
Picked
Perl-Arrays
perl-list
Perl-List-Functions
Perl | Array pop() Function
Last Updated: 07 May 2019
pop() function in Perl returns the last element of Array passed to it as an argument, removing that value from the array. Note that the value passed to it must explicitly ...
read more
Perl
Perl-function
Perl-Arrays
Perl-Array-Functions
Perl | Arrays (push, pop, shift, unshift)
Last Updated: 25 May 2021
Perl provides various inbuilt functions to add and remove the elements in an array..string-table {font-family: arial, sans-serif;border-collapse: collapse;border: 1px soli...
read more
Perl
Picked
Perl-Arrays
Perl | Getting the Number of Elements of an Array
Last Updated: 11 July 2025
An array in Perl is a variable used to store an ordered list of scalar values. An array variable is preceded by an "at" (@) sign. The size of an array can be determined us...
read more
Perl
Picked
Perl-Arrays
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !