vote up 1 vote down star

If I say

puts "Hello"

and decide to add an extra newline I need to do this:

puts "Hello\n"

Having this character in the string is ugly. Is there any way to do this without polluting my string?

flag

5 Answers

vote up 7 vote down check

Just make another call to puts:

puts "Hello"
puts
link|flag
vote up 0 vote down

Well, I don't think an explicit newline is ugly. mipadi's answer is just fine as well. Just to throw another answer in, make an array of the lines then join the aray with a newline. :)

link|flag
vote up 0 vote down

Do you think this looks nicer?


puts "Hello"+$/

</evil>

link|flag
vote up 1 vote down

The reason why Ruby use \n for a newline is because its base on C where Ruby MRI is written in C and even JRuby is written in Java which is base on C++ which is base on C... you get the idea! So all these C-style languages use the \n for the new line.

You can always write your own method that act like puts but add new lines base upon a parameter to the method.

link|flag
vote up 1 vote down
puts "Hello",""
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.