Browse Source

Merge pull request #263 from p1gd0g/patch-1

cell.String has two value.
Geoffrey J. Teale 9 years ago
parent
commit
e0f3d7d6cf
1 changed files with 2 additions and 1 deletions
  1. 2 1
      README.org

+ 2 - 1
README.org

@@ -40,7 +40,8 @@ func main() {
     for _, sheet := range xlFile.Sheets {
         for _, row := range sheet.Rows {
             for _, cell := range row.Cells {
-                fmt.Printf("%s\n", cell.String())
+                text, _ := cell.String()
+                fmt.Printf("%s\n", text)
             }
         }
     }