To Uppercase
Creates a string with all Unicode letters from the original string mapped to their upper case.
Examples
Filter
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.ToUpper("Gopher"))
}
Last Run
:
GOPHER