ruby remove the last character from a string code example Example: ruby remove last element of string 'abc1234'.chomp(4) # => 'abc123' 'toto'.chomp('to') # => 'to'