How make for create a text file using ruby? And how a make for updated
this text file?
On 3/5/07, Marcelo J. [email protected] wrote:
How make for create a text file using ruby? And how a make for updated
this text file?
Hello. Consider this code:
File.open( “testfile.txt”, “w” ) do |the_file|
the_file.puts “I’m a line in the text file!”
end
hope that helps,
-Harold
And how make for get the text of text file?
On 3/5/07, Marcelo J. [email protected] wrote:
How make for create a text file using ruby? And how a make for updated
this text file?
http://www.rubycentral.com/book/ref_c_file.html#File.new
Harry
On 3/5/07, Marcelo J. [email protected] wrote:
And how make for get the text of text file?
Also described here:
http://www.rubycentral.com/book/ref_c_file.html#File.new
File inherits from IO, you’ll probably want to read that as well
(http://www.rubycentral.com/book/ref_c_io.html). Also, please consider
reading an introductory text on Ruby, because the questions you’re
asking are very elementary and covered in any tutorial text.
The Ruby Book (http://www.rubycentral.com/book/) that the
documentation we linked to above is from, would be an excellant start.
There’s a whole chapter called “Basic Input and Output” that should
contain enough infos about files to get you started.
Take care,
-Tim
Tim B. wrote:
On 3/5/07, Marcelo J. [email protected] wrote:
And how make for get the text of text file?
Also described here:
http://www.rubycentral.com/book/ref_c_file.html#File.new
But this not have how get the contet of file. How make this?