Software Engineering Wiki

IsLower

Checks if a string is lower case.

  • Use strings.ToLower() to convert the string to lower case and compare it to the original string.
import "strings"

func IsLower(s string) bool {
	return strings.ToLower(s) == s
}
IsUpper("go") // true
IsUpper("Go") // false

Last updated 15 September 2026 · Edit this page