Vaya a eliminar el espacio en blanco de la cadena
randomString := " hello this is a test"
fmt.Println(strings.Replace(randomString, " ", "", -1))
>hellothisisatest
maxlim0