I have come code which is looking for a particular number within a CSV
row (item no 2). If it finds it, I want it to output the row
unchanged - but if it isn’t there, I want it to delete the row
entirely.
I can’t get the following code to work - can anyone spot my mistakes?
reequire “csv”
def basketExtract
f = File.open(‘DATA.DAT’)
csvr = CSV::Reader.create(f,’|’)
csvr = CSV::Reader.create(f,‘|’)
ones.
I think the entries are strings, so this comparison will never be true.
Try
if csv[1] == “699”
outrow = csv
else #if it isn't one in the list
next
end
CSV::Writer.create(outfile, '|') << outrow
end
end
On the other hand, I would use fastercsv and do something like:
require ‘fastercsv’
FasterCSV.open(“new.csv”, “w”) do |out|
FasterCSV.foreach(“test.csv”, {:headers => true, :return_headers =>
true, :col_sep => ‘|’}) do |row|
out << row if (row.header_row? || row[1] == “699”)
end
end
I have installed the Ruby 1.9.1, but I am new in Ruby.
I would like plot geometry on screen, for example circle, triangle, etc
…
and make a website with whiteboard program. Please help me orientate
myself. In library I found
only tk. with a few program, but I am not sure, that I can only a point
to
draw to screen.
And I saw some draw program, but wich will working with 1.9.1. on
windows
XP ?