为了账号安全,请及时绑定邮箱和手机立即绑定

golang中如何高效连接字符串数组和字符串

golang中如何高效连接字符串数组和字符串

Go
沧海一幻觉 2021-06-30 18:57:34
我在 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 之后,我也无法摆脱多余的空间。有没有什么有效的方法来连接它们?
查看完整描述

3 回答

  • 3 回答
  • 0 关注
  • 391 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信