xlsxd: A Excel xlsx writer

Laeeth Isharc Laeeth at laeeth.com
Fri Nov 9 22:49:20 UTC 2018


On Wednesday, 7 November 2018 at 16:49:58 UTC, H. S. Teoh wrote:
> On Wed, Nov 07, 2018 at 04:41:39PM +0000, Robert Schadek via 
> Digitalmars-d-announce wrote:
>> https://code.dlang.org/packages/xlsxd
>> 
>> Announcing xlsxd a OO wrapper for the C library libxlsxwriter 
>> [1].
>> 
>> Run:
>> 
>>     import libxlsxd;
>>     auto workbook  = newWorkbook("demo.xlsx");
>>     auto worksheet = workbook.addWorksheet("a_worksheet");
>>     worksheet.write(0, 0, "Hello to Excel from D");
>> 
>> 
>> and you have created a Excel spreadsheet in the xlsx format 
>> with name
>> demo.xlsx
>> that contains the string "Hello to Excel from D" in row 0, 
>> column 0.
>> 
>> [1] https://github.com/jmcnamara/libxlsxwriter
>
> Is there support for reading xlsx files too?
>
>
> T

There are various C libraries.you could just use DPP to call 
them..



More information about the Digitalmars-d-announce mailing list