To Lowercase
Creates a string with all Unicode letters from the original string mapped to their lower case.
Examples in
Go
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.ToLower("Gopher"))
}
Last Run
:
gopher