I'm trying to find a simple way of editing each line in a file, and I'm having some trouble understanding how to use the File class to do so.
The file I want to edit has several hundred lines with comma separated values in each line. I'm only interested in the first value in each line, and I want to delete all values after the first one. I tried to do the following:
File.open('filename.txt', 'r+') do |file|
file.each_line { |line| line = line.split(",")[0] }
file.write
file.close
end
Which doesn't work because File.write method requires the contents to be written as an argument.
Could someone enlighten me as to how I could achieve the desired effect?