Explorar o código

Merge pull request #263 from p1gd0g/patch-1

cell.String has two value.
Geoffrey J. Teale %!s(int64=9) %!d(string=hai) anos
pai
achega
e0f3d7d6cf
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  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)
             }
         }
     }