diff options
Diffstat (limited to 'cell.go')
-rw-r--r-- | cell.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,14 +6,14 @@ import ( "strings" ) -// Get value from cell by given sheet index and axis in XLSX file +// GetCellValue provide function get value from cell by given sheet index and axis in XLSX file func GetCellValue(file []FileList, sheet string, axis string) string { axis = strings.ToUpper(axis) var xlsx xlsxWorksheet row := getRowIndex(axis) xAxis := row - 1 name := `xl/worksheets/` + strings.ToLower(sheet) + `.xml` - xml.Unmarshal([]byte(readXml(file, name)), &xlsx) + xml.Unmarshal([]byte(readXML(file, name)), &xlsx) rows := len(xlsx.SheetData.Row) if rows <= xAxis { return `` @@ -26,7 +26,7 @@ func GetCellValue(file []FileList, sheet string, axis string) string { shardStrings := xlsxSST{} xlsxSI := 0 xlsxSI, _ = strconv.Atoi(v.V) - xml.Unmarshal([]byte(readXml(file, `xl/sharedStrings.xml`)), &shardStrings) + xml.Unmarshal([]byte(readXML(file, `xl/sharedStrings.xml`)), &shardStrings) return shardStrings.SI[xlsxSI].T case "str": return v.V |