http://www.perlmonks.org?node_id=751195


in reply to chop and chomp

chop is used to remove the last character,chomp function removes only line endings.

chop removes the last character and returns the character chopped. Chomp removes any trailing string that corresponds to the current value of $/ and returns number of characters removed.