Print string while adding newlines

104 Views Asked by At

I'm trying to print out a string with embedded ruby to a webpage, if I use the following it ends up going off of the page.

<%= comment.body %>

I want to do something like this so that it automatically prints everything with new lines

<%= comment.body[0..136] %>
<%= "\n" %>
<%= comment.body[137..250] %>

I've done the following however it prints the characters with spaces between them and ignores spaces in the string.

<% for i in 0..comment.body.length do %>
<%= i %>
<% end %>

Thanks

3

There are 3 best solutions below

0
On BEST ANSWER

i'm not sure but it can help you some how

<%=simple_format(comment.body, html_options={ class: 'your_class'}, options={})%>

for more details and modification follow this

0
On

Solved it by using CSS

in HTML:

<p id="commentBody">
  ...
</p>

in CSS:

#commentBody {
  word-wrap: break-word;
}
1
On

Why not use HTML?

<% for i in 0..comment.body.length do %>
  <%= i %><br>
<% end %>