21
0
Fork 0
Pure Golang xls library -- forked from https://github.com/extrame/xls
Go to file
Lucas Liu 4a6cf26307
Merge pull request #50 from sergeilem/master
FIX: data corruption while reading, issues #31 #46 #47
2020-04-26 20:46:01 +08:00
testdata credits added 2019-03-06 23:27:28 +03:00
.travis.yml travis added 2019-03-06 23:40:45 +03:00
BigTable.xls Big test table added 2018-12-02 01:32:17 +03:00
LICENSE add LICENSE and some annotation 2015-06-16 10:37:11 +08:00
README.md credits added 2019-03-06 23:27:28 +03:00
Table.xls add one example 2015-09-30 11:17:25 +08:00
bigtable_test.go Big test table added 2018-12-02 01:32:17 +03:00
bof.go clean code and add some comments 2015-09-30 10:40:01 +08:00
cell_range.go clean code and add some comments 2015-09-30 10:40:01 +08:00
col.go Merge branch 'master' into master 2020-04-26 20:45:52 +08:00
comparexlsxlsx.go more date reading enhancements 2019-03-06 23:13:03 +03:00
date.go add one example 2015-09-30 11:17:25 +08:00
doc.go add some example 2015-09-30 11:44:14 +08:00
example_test.go update 2017-02-21 16:27:01 +08:00
font.go init 2015-03-19 17:39:41 +08:00
format.go partly support time cell 2015-03-25 14:47:26 +08:00
issue47_test.go more date reading enhancements 2019-03-06 23:13:03 +03:00
row.go 5) Row.ColExact(int)(string) when we need not to output duplicates of merged cells 2019-03-17 22:42:43 +03:00
sst.go init 2015-03-19 17:39:41 +08:00
workbook.go Merge branch 'master' into master 2020-04-26 20:45:52 +08:00
worksheet.go [fixed] empty value is^W was returned if cell is string formula 2019-04-02 23:38:51 +03:00
xf.go partly support time cell 2015-03-25 14:47:26 +08:00
xls.go Merge pull request #29 from korv1982/master 2018-09-05 17:27:46 +08:00
xls_test.go removed TestEuropeString 2019-03-05 22:36:31 +03:00

README.md

xls

GoDoc

Pure Golang xls library writen by Rongshu Tech (chinese), based on libxls.

Thanks for contributions from Tamás Gulácsi @tgulacsi, @flyin9.

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