http://qs1969.pair.com?node_id=50598


in reply to (tye)Re: How do you chomp your chomps?
in thread How do you chomp your chomps?

And, of course, one could always write their own little function such as:
sub my_chomp { my $str = shift; chomp($str); return $str; }
Though this doesn't handle arrays, it also doesn't modify the input string in place.