photoprism/pkg/txt/upperfirst.go
Michael Mayer eec31c4938 Text: Do not capitalize "van" in names and titles #2672
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-09-14 20:37:24 +02:00

14 lines
244 B
Go

package txt
import (
"unicode"
)
// UpperFirst returns the string with the first character converted to uppercase.
func UpperFirst(str string) string {
for i, v := range str {
return string(unicode.ToUpper(v)) + str[i+1:]
}
return ""
}