go不使用工具包将大写字符转成小写字符的方法
Posted wanghui-garcia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go不使用工具包将大写字符转成小写字符的方法相关的知识,希望对你有一定的参考价值。
package main import ( "fmt" ) func main() { str := "hellOWorlD" //返回str is all lower char b := make([]byte, len(str)) for i, _:= range str{ s := str[i] if ‘A‘ <= s && s <= ‘Z‘ { s = s - ‘A‘ + ‘a‘ } b[i] = s } fmt.Println(str) //返回hellOWorlD fmt.Printf("%s ",b) //返回helloworld }
以上是关于go不使用工具包将大写字符转成小写字符的方法的主要内容,如果未能解决你的问题,请参考以下文章