tags:

views:

69

answers:

2

Can anyone recommend a decent Excel (Binary XLS) document importer written in C?

I am looking to write a Ruby wrapper around one.

I haven't been able to find any via Google.

+1  A: 

Have you considered the source code of Gnumeric?

kmarsh
+1. This is the first thing I thought of too.
Kristo
A: 

Unfortunately I cant' recommend anything to import XLS files directly, but I recently used libcsv in a project of mine to import spreadsheets saved as CSV files into a C application.

In Excel, choose "File", "Save As" and set the "Save as type" to "CSV (Comma delimited) (*.csv)" to save your file as a CSV.

iWerner