Skip to content

Commit

Permalink
Merge pull request #29 from korv1982/master
Browse files Browse the repository at this point in the history
Minor changes
  • Loading branch information
extrame authored Sep 5, 2018
2 parents d1d6f84 + 86ef51e commit 5397868
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 8 deletions.
17 changes: 12 additions & 5 deletions col.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"fmt"
"math"
"strconv"
"strings"

"time"

Expand Down Expand Up @@ -53,12 +54,18 @@ func (xf *XfRk) String(wb *WorkBook) string {
fNo := wb.Xfs[idx].formatNo()
if fNo >= 164 { // user defined format
if formatter := wb.Formats[fNo]; formatter != nil {
i, f, isFloat := xf.Rk.number()
if !isFloat {
f = float64(i)
if (strings.Contains(formatter.str, "#") || strings.Contains(formatter.str, ".00")){
//If format contains # or .00 then this is a number
return xf.Rk.String()
}else{
i, f, isFloat := xf.Rk.number()
if !isFloat {
f = float64(i)
}
t := timeFromExcelTime(f, wb.dateMode == 1)

return yymmdd.Format(t, formatter.str)
}
t := timeFromExcelTime(f, wb.dateMode == 1)
return yymmdd.Format(t, formatter.str)
}
// see http://www.openoffice.org/sc/excelfileformat.pdf Page #174
} else if 14 <= fNo && fNo <= 17 || fNo == 22 || 27 <= fNo && fNo <= 36 || 50 <= fNo && fNo <= 58 { // jp. date format
Expand Down
10 changes: 8 additions & 2 deletions workbook.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"io"
"os"
"unicode/utf16"
"golang.org/x/text/encoding/charmap"
)

//xls workbook type
Expand Down Expand Up @@ -160,12 +161,17 @@ func (wb *WorkBook) parseBof(buf io.ReadSeeker, b *bof, pre *bof, offset_pre int
}
return
}

func decodeWindows1251(enc []byte) string {
dec := charmap.Windows1251.NewDecoder()
out, _ := dec.Bytes(enc)
return string(out)
}
func (w *WorkBook) get_string(buf io.ReadSeeker, size uint16) (res string, err error) {
if w.Is5ver {
var bts = make([]byte, size)
_, err = buf.Read(bts)
res = string(bts)
res = decodeWindows1251(bts)
//res = string(bts)
} else {
var richtext_num = uint16(0)
var phonetic_size = uint32(0)
Expand Down
5 changes: 4 additions & 1 deletion xls.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ func OpenReader(reader io.ReadSeeker, charset string) (wb *WorkBook, err error)
for _, file := range dir {
name := file.Name()
if name == "Workbook" {
book = file
if book == nil {
book = file
}
//book = file
// break
}
if name == "Book" {
Expand Down

0 comments on commit 5397868

Please sign in to comment.