Open In App

Perl | Array pop() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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 be an array, not a list.

Syntax:
pop(Array)

Returns:
undef if list is empty else last element from the array.

Example 1:




#!/usr/bin/perl -w
  
# Defining an array of integers
@array = (10, 20, 30, 40);
  
# Calling the pop function
$popped_element = pop(@array);
  
# Printing the Popped element
print "Popped element is $popped_element";
  
# Printing the resultant array
print "\nResultant array after pop(): \n@array";


Output:

Popped element is 40
Resultant array after pop(): 
10 20 30

Example 2:




#!/usr/bin/perl -w
  
# Defining an array of strings
@array = ("Geeks", "For", "Geeks", "Best");
  
# Calling the pop function
$popped_element = pop(@array);
  
# Printing the Popped element
print "Popped element is $popped_element";
  
# Printing the resultant array
print "\nResultant array after pop(): \n@array";


Output:

Popped element is Best
Resultant array after pop(): 
Geeks For Geeks

Last Updated : 07 May, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads