diff options
author | Ri Xu <xuri.me@gmail.com> | 2016-09-02 11:54:52 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2016-09-02 11:54:52 +0800 |
commit | 192af02a40cc745d967be1c96fcc52569ca8e8df (patch) | |
tree | 7350c2c152b6df596759c214705f7a00eb30b573 /cell.go | |
parent | 0a0a36bafd160752c2af914ab3bdb1d28665ebe3 (diff) |
Format code with golint rules
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 |