英文字母对应的Unicode编码

时间:2023-03-08 21:04:54

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 > && s < ){
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")
}