vote up 4 vote down star

What's the difference between...

File.open('abc', 'w') { |f| f.puts 'abcde' }

...and...

File.open('abc', 'w') { |f| f.write 'abcde' }

...?

flag

@RichB (aka "The OCD editing guy") The original lowercase "and" was technically more correct. It's a conjunction, not the start of a new sentence. – MarkusQ Mar 4 at 20:27
1  
@MarkusQ: Rich B is just an automated trolling bot. Clearly his grammar system needs to be upgraded. – Pesto Mar 4 at 20:47
@MarkusQ: I disagree. Edit it if you feel differently. – Rich B Mar 4 at 20:49
See here: grammarbook.com/punctuation/capital.asp/… – Jon B Mar 4 at 20:56
1  
You guys are tragic. – Ethan Mar 6 at 1:56
show 12 more comments

3 Answers

vote up 10 vote down check

puts appends a newline, write does not. Technically, puts appends the record separator (which is usually a newline) to the output if it doesn't have one at the end. write outputs only what it is given.

link|flag
vote up 5 vote down

In cases like this, I always start with the Ruby Core documentation, in this case the IO class.

ios.puts(obj, ...) => nil

Writes the given objects to ios as with IO#print. Writes a record separator (typically a newline) after any that do not already end with a newline sequence. If called with an array argument, writes each element on a new line. If called without arguments, outputs a single record separator.

ios.write(string) => integer

Writes the given string to ios. The stream must be opened for writing. If the argument is not a string, it will be converted to a string using to_s. Returns the number of bytes written.

link|flag
vote up 1 vote down

What's the difference between print and write then?

link|flag
1  
#print is similar to #puts, in that it outputs a record separator. The differences are that #print calls to_s on anything other than Strings (try print [1, 2, 3] vs. puts [1, 2, 3]) and what happens if they're called without an argument (print outputs $_, puts outputs the record separator). – Pesto Mar 5 at 16:54

Your Answer

Get an OpenID
or

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