<%= message.content %>
I can display a message like this, but in some situations I would like to display only the first 5 words of the st
Try the following:
'this is a line of some words'.split[0..3].join(' ') => "this is a line"