码迷,mamicode.com
首页 > 其他好文 > 详细

go不使用工具包将大写字符转成小写字符的方法

时间:2019-03-21 00:46:24      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:ack   class   col   amp   style   div   返回   func   imp   

 

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\n",b) //返回helloworld
}

 

go不使用工具包将大写字符转成小写字符的方法

标签:ack   class   col   amp   style   div   返回   func   imp   

原文地址:https://www.cnblogs.com/wanghui-garcia/p/10568991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!