我在 golang 中有一堆字符串和 [] 字符串,我需要将它们连接起来。但是出于某种原因,我在此过程中遇到了很多需要摆脱的空格。
这是代码
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 之后,我也无法摆脱多余的空间。有没有什么有效的方法来连接它们?
相关分类