Mega Code Archive

 
Categories / Ruby / String
 

The chomp and chop Methods

# The chop (or chop!) method chops off the last character of a string # the chomp (chomp!) method chomps off the record separator ($/)  joe = <<limerick T q limerick puts joe # Apply chomp! to remove the last record separator (\n) joe.chomp!  puts joe