ruby spreadsheet library
Wednesday, May 5th, 2010Thumbs up for http://spreadsheet.rubyforge.org/ A ruby library for accessing .xls files. Really comfortable. Just missing a way to access columns by excel-like captions
sheet.row(0)["AA"]
Maybe i just didn’t find it, but nevertheless you can of course extend String, though
class String
def to_excel_index
each_char.collect{ |c| ("A".."Z").to_a.index(c) }.
inject { |sum, n| sum + (sum + 1) * 25 + n + 1 }
end
end
and use
sheet.row(0)["AA".to_excel_index]