1 Star 1 Fork 0

沙滩星空 / miniutils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ascii.go 439 Bytes
一键复制 编辑 原始数据 按行查看 历史
沙滩星空 提交于 2023-02-07 14:34 . Compatible gov1.18 and ADD cookie
package miniutils
import (
"strings"
)
// Copy from: "net/http/internal/ascii", print.go
func asciiIsPrint(s string) bool {
for i := 0; i < len(s); i++ {
if s[i] < ' ' || s[i] > '~' {
return false
}
}
return true
}
// ToLower returns the lowercase version of s if s is ASCII and printable.
func asciiToLower(s string) (lower string, ok bool) {
if !asciiIsPrint(s) {
return "", false
}
return strings.ToLower(s), true
}
Go
1
https://gitee.com/catmes/miniutils.git
git@gitee.com:catmes/miniutils.git
catmes
miniutils
miniutils
main

搜索帮助