Merge pull request #11 from NaySoftware/master

looping on rows columns functionality
This commit is contained in:
Ri Xu 2016-11-02 12:57:04 +08:00 committed by GitHub
commit b4f7e72353
4 changed files with 50 additions and 0 deletions

50
rows.go Normal file
View File

@ -0,0 +1,50 @@
package excelize
import (
"encoding/xml"
"strings"
"strconv"
)
// GetRows return all the rows in a sheet
func (f *File) GetRows(sheet string) ([]xlsxRow, error) {
var xlsx xlsxWorksheet
name := `xl/worksheets/` + strings.ToLower(sheet) + `.xml`
err := xml.Unmarshal([]byte(f.readXML(name)), &xlsx)
if ( err != nil ) {
return nil, err
}
rows := xlsx.SheetData.Row
return rows, nil
}
// readXMLSST read xmlSST simple function
func readXMLSST(f *File) (xlsxSST, error) {
shardStrings := xlsxSST{}
err := xml.Unmarshal([]byte(f.readXML(`xl/sharedStrings.xml`)), &shardStrings)
return shardStrings, err
}
// GetValueFrom return a value from a column/row cell,
// this function is inteded to be used with for range on rows
// an argument with the xlsx opened file
func (self* xlsxC) GetValueFrom(f *File) (string, error) {
switch self.T {
case "s":
xlsxSI := 0
xlsxSI, _ = strconv.Atoi(self.V)
d, err := readXMLSST(f)
if ( err != nil ) {
return "", err
}
return d.SI[xlsxSI].T, nil
case "str":
return self.V, nil
default:
return self.V, nil
} // switch
}

Binary file not shown.

BIN
test/Workbook_2.xlsx Normal file

Binary file not shown.

BIN
test/Workbook_3.xlsx Normal file

Binary file not shown.