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

英文字母对应的Unicode编码

时间:2019-03-21 01:16:01      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:return   ret   返回   pre   for   div   world   字符   bsp   

A~Z :65~90

a~z :97~122

0~9 : 48~57

如果想要知道字符串中的值是否是小写英文字符,不使用工具包的一种方法就是使用Unicode编码值,举例:

package main

import (
    "fmt"
)


func main() {
    // str := "helloworld" //返回str is all lower char
    str := "hello4world" //返回str is not all lower char
    for _, s := range str{
        if !(s > 96 && s < 123){
            fmt.Println("str is not all lower char")
            return
        }
    }
    fmt.Println("str is all lower char")
}

当然还有更简单的一种方法:

package main

import (
    "fmt"
)

func main() {
    str := "helloworld" //返回str is all lower char
    // str := "hello4world" //返回str is not all lower char
    for _, s := range str{
        if !(a <= s && s <= z){
            fmt.Println("str is not all lower char")
            return
        }
    }
    fmt.Println("str is all lower char")
}

 

英文字母对应的Unicode编码

标签:return   ret   返回   pre   for   div   world   字符   bsp   

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

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