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:
#!/usr/bin/perl # Initialising a string $string = "GfG is a computer science portal"; # Calling the chop() function $A = chop($string); # Printing the chopped string and # removed character print " Chopped String is : $string\n"; print " Removed character is : $A\n"; |
chevron_right
filter_none
Output:
Chopped String is : GfG is a computer science porta Removed character is : l
Example 2:
#!/usr/bin/perl # Initialising a string $string = "[1, 2, 3]"; # Calling the chop() function $A = chop($string); # Printing the chopped string and # removed character print " Chopped String is : $string\n"; print " Removed character is : $A\n"; |
chevron_right
filter_none
Output :
Chopped String is : [1, 2, 3 Removed character is : ]
Recommended Posts:
- Perl | Basic Syntax of a Perl Program
- Perl Tutorial - Learn Perl With Examples
- Perl | split() Function
- Perl | chomp() Function
- Perl | rename() Function
- Perl | undef and the defined function
- Perl | cos() Function
- Perl | sin() Function
- Perl | abs() function
- Perl | atan2() Function
- Perl | splice() - The Versatile Function
- Perl | delete() Function
- Perl | defined() Function
- Perl | each() Function
- Perl | index() Function
- Perl | int() function
- Perl | join() Function
- Perl | keys() Function
- Perl | lc() Function for Lower Case Conversion
- Perl | lcfirst() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.

