To convert a string to all lowercase letters, use the ToLower function:
package main //from www . j a v a2 s .c om import ( "fmt" "strings" ) func main() { fmt.Println(strings.ToLower("TEST")) }