英⽂字母对应的Unicode编码
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
}
}
html符号代码对照表
fmt.Println("str is all lower char")
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。