Pārlūkot izejas kodu

Merge pull request #498 from heiy/master

solve ending space missing
xuri 6 gadi atpakaļ
vecāks
revīzija
af100372a0
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      cell.go

+ 1 - 1
cell.go

@@ -229,7 +229,7 @@ func (f *File) SetCellStr(sheet, axis, value string) error {
 		value = value[0:32767]
 	}
 	// Leading space(s) character detection.
-	if len(value) > 0 && value[0] == 32 {
+	if len(value) > 0 && (value[0] == 32 || value[len(value)-1] == 32) {
 		cellData.XMLSpace = xml.Attr{
 			Name:  xml.Name{Space: NameSpaceXML, Local: "space"},
 			Value: "preserve",