mirror of
https://github.com/golang/go
synced 2024-11-19 02:34:44 -07:00
add upperhex
This commit is contained in:
parent
62fb079e2b
commit
775cdce3b7
@ -42,6 +42,8 @@ func (e *Error) Temporary() bool {
|
||||
return ok && t.Temporary()
|
||||
}
|
||||
|
||||
const upperhex = "0123456789ABCDEF"
|
||||
|
||||
func ishex(c byte) bool {
|
||||
switch {
|
||||
case '0' <= c && c <= '9':
|
||||
@ -324,8 +326,8 @@ func escape(s string, mode encoding) string {
|
||||
j++
|
||||
case shouldEscape(c, mode):
|
||||
t[j] = '%'
|
||||
t[j+1] = "0123456789ABCDEF"[c>>4]
|
||||
t[j+2] = "0123456789ABCDEF"[c&15]
|
||||
t[j+1] = upperhex[c>>4]
|
||||
t[j+2] = upperhex[c&15]
|
||||
j += 3
|
||||
default:
|
||||
t[j] = s[i]
|
||||
|
Loading…
Reference in New Issue
Block a user