How to count number of repeating words in a given String?
In below program string Fields function used to splits the string s around each instance of one or more consecutive white space characters, as defined by unicode.
Example
package main
import (
"fmt"
"strings"
)
func wordCount(str string) map[string]int {
wordList := strings.Fields(str)
counts := make(map[string]int)
for _, word := range wordList {
_, ok := counts[word]
if ok {
counts[word] += 1
} else {
counts[word] = 1
}
}
return counts
}
func main() {
strLine := "Australia Canada Germany Australia Japan Canada"
for index,element := range wordCount(strLine){
fmt.Println(index,"=>",element)
}
}
Most Helpful This Week
Print index and element or data from Array, Slice and Map
How to fetch an Integer variable as String in Go?
Regular expression for matching HH:MM time format in Golang
Sierpinski Carpet in Go Programming Language
Select single argument from all arguments of variadic function
How to include and execute HTML template?