Answers for "golang split array with :"

Go
6

golang string split

s := strings.Split("a,b,c", ",")
Posted by: Guest on August-20-2020
0

strings split golang

s := strings.Split("a,b,c", ",")
fmt.Println(s)
// Output: [a b c]
Posted by: Guest on November-01-2021

Browse Popular Code Answers by Language