Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Perl | push() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

push() function in Perl is used to push a list of values onto the end of the array. push() function is often used with pop to implement stacks. push() function doesn’t depend on the type of values passed as list. These values can be alpha-numeric.

Syntax: push(Array, List)

Parameter:
Array: in which list of values is to be added
List: which is to be added using push function

Returns:
the number of elements in new array.

Example 1:




#!/usr/bin/perl -w
  
# Original Array
@array = ( 10, 20, 30 );
  
# Printing Array elements
print "Original Array: @array \n";
  
# Calling push function to 
# add a list of elements
push(@array, (35, 40, 55));
  
# Printing Updated array elements
print "Updated Array: @array \n";

Output:

Original Array: 10 20 30 
Updated Array: 10 20 30 35 40 55 

 
Example 2:




#!/usr/bin/perl -w
  
# Original Array
@array = ( 10, A, 30 );
  
# Printing Array elements
print "Original Array: @array \n";
  
# Calling push function to 
# add a list of elements
push(@array, (F, G, H));
  
# Printing Updated array elements
print "Updated Array: @array \n";

Output:

Original Array: 10 A 30 
Updated Array: 10 A 30 F G H 
My Personal Notes arrow_drop_up
Last Updated : 25 Jun, 2019
Like Article
Save Article
Similar Reads