Open In App

Perl | STDIN in Scalar and List Context

Last Updated : 18 Feb, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

STDIN in Perl is used to take input from the keyboard unless its work has been redefined by the user.

Syntax: <STDIN> or <>

STDIN in Scalar Context

  In order to take input from the keyboard or operator is used in Perl. This operator reads a line entered through the keyboard along with the newline character corresponding to the ENTER we press after input. Example: 

Perl




# Asking user for Input
print "What is your age?\n";
 
# Getting an age from the user
$age = <STDIN>;
 
# Removes new line from the input
chomp $age;
 
# Printing the value entered by user
print "Your age is ", $age;


Output:    So $age contains the input given by the user as well as the new line character. In order to remove the new line, chomp function is used which removes “\n” from the end of the string. 

 Taking user Input without using <STDIN> in Scalar Context –

We can take user Input without using <STDIN>.

Perl




#!/usr/bin/perl
print("Please enter your age : ");
$age = <>;
 
print("Your age is $age");


output – 

 

STDIN in List Context

  When STDIN is used with list context, it takes multiple values as an input from the keyboard. Press ENTER to indicate individual elements in the list. In order to indicate the ending of inputs, press Ctrl-D in Linux systems whereas Ctrl-Z in Windows system. The example below shows the use of STDIN in list context. Example: 

Perl




# Get a city name from the user
print "Enter the cities you have visited last year... ";
print "<Ctrl>-D to Terminate \n";
@city = <STDIN>;
 
# Removes new line appended at
# the end of every input
chomp @city;
 
# Print the city names
print "\nCities visited by you are: \n@city ";


Output:    Here is how the above program works: Step 1: Get List input from the user separated by ENTER. Step 2: When Ctrl-D is pressed it indicates the ending of inputs, so, Perl assigns everything to the @city array. Step 3: Use chomp function to remove new line from all the inputs. Step 4: Printing the city names given as in input.

Taking user Input without <STDIN> in List Context –

We can also take user input in List Context using <> and to mark the end of taking input we will press CTRL+Z for Windows and CTRL+D for Linux.

Perl




#!/usr/bin/perl
 
print("Enter the cities you have visited last year : ");
 
@cities = <>;
 
chomp @cities;
 
print("You have visited the following cities @cities");


Output – 

 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads