tags:

views:

67

answers:

2

Hi.

Are there any gems able to parse XLS and XLSX files? I've found Spreadsheet and ParseExcel, but they both don't understand XLSX format :( Any ideas?

Thank you.

A: 

I don't know of any ruby modules capable of parsing XLXS. You might just want to do it yourself. An XLSX file is simply a zip file containing XML documents. Unzip it and take a look, it's pretty easy to parse through.

Mark
i know that, but i thought someone already did that :)
Daniel
+1  A: 

Just found roo, that might do the job - works for my requirements, reading a basic spreadsheet.

Chris Kimpton