The chop() function in Perl is used to remove the last character from the input string.
Syntax: chop(String)
Parameters:
String : It is the input string whose last characters are removed.
Returns: the last removed character.
Example 1:
$string = "GfG is a computer science portal" ;
$A = chop ( $string );
print " Chopped String is : $string\n" ;
print " Removed character is : $A\n" ;
|
Output:
Chopped String is : GfG is a computer science porta
Removed character is : l
Example 2:
$string = "[1, 2, 3]" ;
$A = chop ( $string );
print " Chopped String is : $string\n" ;
print " Removed character is : $A\n" ;
|
Output :
Chopped String is : [1, 2, 3
Removed character is : ]