21
0
xls/README.md

48 lines
1.3 KiB
Markdown
Raw Normal View History

2015-03-19 10:43:13 +01:00
# xls
2015-09-07 04:58:54 +02:00
[![GoDoc](https://godoc.org/github.com/extrame/xls?status.svg)](https://godoc.org/github.com/extrame/xls)
2015-12-15 02:24:39 +01:00
Pure Golang xls library writen by [MinkTech(chinese)](http://www.mink-tech.com).
Thanks for contributions from Tamás Gulácsi.
2015-10-15 05:53:09 +02:00
**English User please mailto** [Liu Ming](mailto:liuming@mink-tech.com)
2015-03-19 10:43:13 +01:00
This is a xls library writen in pure Golang. Almostly it is translated from the libxls library in c.
It has just the reading function without the format.
2015-03-23 03:06:19 +01:00
# Basic Usage
* Use **Open** function for open file
* Use **OpenReader** function for open xls from a reader
These methods will open a workbook object for reading, like
func (w *WorkBook) ReadAllCells() (res [][]string) {
for _, sheet := range w.Sheets {
w.PrepareSheet(sheet)
if sheet.MaxRow != 0 {
temp := make([][]string, sheet.MaxRow+1)
for k, row := range sheet.Rows {
data := make([]string, 0)
if len(row.Cols) > 0 {
for _, col := range row.Cols {
if uint16(len(data)) <= col.LastCol() {
data = append(data, make([]string, col.LastCol()-uint16(len(data))+1)...)
}
str := col.String(w)
for i := uint16(0); i < col.LastCol()-col.FirstCol()+1; i++ {
data[col.FirstCol()+i] = str[i]
}
}
temp[k] = data
}
}
res = append(res, temp...)
}
}
return
}