我在Go中有一个字符串切片,我想将其表示为逗号分隔的字符串。这是切片

example := []string{"apple", "Bear", "kitty"}

如何输出字符串 'apple', 'Bear', 'kitty'

commaSep := "'" + strings.Join(example, "', '") + "'"

goper
413 声望25 粉丝

go 后端开发