I am displaying recent comments on the home page of a very simple blog application I am building in Ruby on Rails. I want to limit the number of characters that are displayed fr
Try the truncate view helper
<%=h truncate(comment.body, :length => 80) %>