solve ending space missing

This commit is contained in:
heiy 2019-10-10 20:04:33 +08:00
parent a00ba75f0f
commit 810139f5fc
1 changed files with 1 additions and 1 deletions

View File

@ -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",