在 Golang 中,可以使用加号(+)或 Sprintf 函数来连接字符串。
- 使用加号(+):
str1 := "hello"
str2 := "world"
result := str1 + " " + str2 // 连接两个字符串并添加空格
fmt.Println(result) // 输出:hello world
- 使用 Sprintf 函数:
str1 := "hello"
str2 := "world"
result := fmt.Sprintf("%s %s", str1, str2) // 格式化输出字符串
fmt.Println(result) // 输出:hello world