21
0
Pure Golang xls library -- forked from https://github.com/extrame/xls
Go to file
2018-05-14 11:52:38 +08:00
bof.go clean code and add some comments 2015-09-30 10:40:01 +08:00
cell_range.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
col.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
date.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
doc.go add some example 2015-09-30 11:44:14 +08:00
example_test.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
font.go init 2015-03-19 17:39:41 +08:00
format.go 修复用默认格式导致的浮点数格式化为整数 2018-05-14 11:52:38 +08:00
LICENSE add LICENSE and some annotation 2015-06-16 10:37:11 +08:00
README.md Add Formula & Format support 2018-04-05 21:28:01 +08:00
row.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
sst.go init 2015-03-19 17:39:41 +08:00
Table.xls add one example 2015-09-30 11:17:25 +08:00
workbook.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
worksheet.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
xf.go Add Formula & Format support 2018-04-05 21:28:01 +08:00
xls_test.go fix bug 2017-02-21 16:59:50 +08:00
xls.go Add Formula & Format support 2018-04-05 21:28:01 +08:00

xls

GoDoc

Pure Golang xls library writen by Rongshu Tech(chinese). Add Formula & Format support by [chen.s.g] (http://www.imohe.com)

Thanks for contributions from Tamás Gulácsi, sergeilem.

English User please mailto Liu Ming

This is a xls library writen in pure Golang. Almostly it is translated from the libxls library in c.

The master brunch has just the reading function without the format.

new_formater branch is for better format for date and number ,but just under test, you can try it in development environment. If you have some problem about the output format, tell me the problem, I will try to fix it.

Basic Usage

  • Use Open function for open file

  • Use OpenWithCloser function for open file and use the return value closer for close file

  • Use OpenReader function for open xls from a reader, you should close related file in your own code

  • Follow the example in GODOC