Answers for "split string by space in go"

Go
1

golang split spaces

someString := "one    two   three four "

words := strings.Fields(someString)

fmt.Println(words, len(words)) // [one two three four] 4
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language