Pergi hapus whitespace dari string

randomString := "  hello      this is a test"
fmt.Println(strings.Replace(randomString, " ", "", -1))

>hellothisisatest
maxlim0