I found a strange behavior of chomp in Perl and I am unable to comprehend why is chomp is working like this.

The following line does not work as expected

if ( chomp($str1) eq chomp($str2) )

But, the following works fine

chomp $str1;
chomp $str2;
if ( $str1 eq $str2 )

Can you please give some insight in this behavior of chomp?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

chomp modifies its argument. It does not return a modified argument. The second example is, in fact, how you're supposed to use it.

edit: perldoc -f chomp says:

   chomp   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.
link|improve this answer
1  
+1. To be more explicit: chomp takes one or more arguments, modifies them if necessary, and "returns the total number of characters removed from all its arguments". [link] – ruakh Feb 14 at 2:34
I have always thought that there should be an rchomp which behaves as the OP expected. I think that chomp( my $input = <> ); looks really awkward, wouldn't you rather my $input = rchomp <> – Joel Berger Feb 14 at 2:45
1  
I hate these C-style interfaces that modify arguments. Text::Chomped is the work-around. – daxim Feb 14 at 11:08
1  
The original idea behind modifying it in place is that you can write your perl script with implicit arguments ($_) and have it all like while(<STDIN>) { chomp; next if /begin_pattern/../end_pattern/; s/x/y/; print; } -- that's where Perl comes from, historically, and that's the source of most of the things people find quirky. I agree that it's dubious in most modern programming, though. – fennec Feb 14 at 16:59
feedback

I like the name chomp() it's sound tells you what it does. As @ruakh mentions it takes one or more arguments, so you can say:

chomp($str1,$str2);
if ( $str1 eq $str2 ) ...

You can also hand it an array of strings, like what you would get from reading a whole file at once, e.g.:

chomp(@lines);
link|improve this answer
feedback

chomp returns the number of characters removed, not the strings that have been chomped.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.