我正在使用Split方法从两个单独的字符串(str1,str2)中检索单词,并将所有单词附加到另一个Array(str)中

package main
import (
 "fmt"
 "strings" )

func main() {

Name := "Red Blue Green"
Address := "New York Paris France"

str1  := strings.Split(Name, " ")
str2  := strings.Split(Address, " ")
str   := append(str1 , str2)

fmt.Println(str)

}

我收到错误消息:

不能在附加中使用str2(类型[] string)作为类型字符串

前往Playground Link:

https://play.golang.org/p/LxO50fzuYnh

谁能帮我这个?我是初学者。

谢谢。

最佳答案

str是一个字符串数组,而不是[] string数组,因此您应该使用

str   := append(str1 , str2...)

关于string - 如何在Golang中使用Append方法。语法要求接口(interface)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54074247/

10-14 23:45