func lowercase(input string) string { lower := make([]byte, len(input)) for i := 0; i < len(input); i++ { c := input[i] if 'A' <= c && c ...
確定! 回上一頁