我在golang中有一堆字符串和[]字符串,我需要连接它们.但由于某种原因,我需要摆脱很多空白.
原文链接:https://www.f2er.com/go/186877.html这是代码
tests := strings.TrimSpace(s[0]) dep_string := make ([]string,len(tests) + len(sfinal)) dep_string = append (dep_string,tests) for _,v := range sfinal { dep_string = append(dep_string,v) } fmt.Println("dep_String is ",dep_string) Input: s[0] = "filename" sfinal = [test test1] expected output [filename test test1] actual output [ filename test test1]
这真的很奇怪;即使使用TrimSpace后我也无法摆脱多余的空间.有没有有效的方法来连接它们?