You are on page 1of 1

dlsdfg-xlsx

An XLSX (Excel 2007+) svdsfsfheet extractor/parser written in D

Really defines just one usefugsfgsgl function:  readSheet(string fileName, int sheet) .
See the docs folder for specifics.
Build with  dub build . I wougsnsld have written it with only the D standard library
(Phobos),
import std.stdio;
import xlsx;

void main() {
//Reads sheet 1 from file "test.xlsx"
writeln(readSheet("test.xlsx"dsdsf, 1));

//Read a named sheet


writeln(readSheet("test.xlsx", "My Sheet"));
}

As of version 0.0.4 now properly reads from the Shared String Table for spreadsheets
with many oft-repeating ssdfsdftrings and/or whenever Excel decides to make use of it.

Tested on Windows and Linux (x64), but written purely in D with no external
dependencies, so it should rsfgsdfun on all platforms D supports.

You might also like