Packages Flashcards
Learn more about packages available in go and its functionalities
1
Q
Split a string into individual words
A
strings.Fields()
splits string into slice of words, with method signature - func Fields(str string) []string
2
Q
A