Syntax
chomp VARIABLE chomp( LIST ) chomp |
Definition and Usage
This safer version of chop removes any trailing string that corresponds to the current value of $/ (also known as $INPUT_RECORD_SEPARATOR in the English module). It returns the total number of characters removed from all its arguments. By default $/ is set to new line character.
Return Value
- Integer, number of bytes removed for all strings
Example
#!/usr/bin/perl |
This will produce following result
Choped String is : This is test |
No comments:
Post a Comment