I write a simple excel reader.It can read xlsx file, support some basic operators. Still WIP.
https://github.com/xflywind/xlsx
You can read docs in https://xflywind.github.io/xlsx/xlsx.html
parseExcel to get sheet data. $ to display SheetArray and show to display SheetArray with more control.
toCsv Parse SheetArray and write a Csv file. toSeq Parse SheetArray and return a seq[seq[string]] (Thanks to ThomasTJdev ‘s help)
readExcel read excel for scientific calculation.
Also I write a simple library to read pure text of word/docx.It is in https://github.com/xflywind/docx.
And a simple library to measure execution times.It is in https://github.com/xflywind/timeit.