GO语言"encoding/hex"包中"DecodeString"函数的用法及代码示例。
用法:
func DecodeString(s string)([]byte, error)
DecodeString 返回十六进制字符串 s 表示的字节。
DecodeString 期望 src 仅包含十六进制字符,并且 src 具有偶数长度。如果输入格式错误,DecodeString 返回错误前解码的字节。
例子:
package main
import (
"encoding/hex"
"fmt"
"log"
)
func main() {
const s = "48656c6c6f20476f7068657221"
decoded, err := hex.DecodeString(s)
if err != nil {
log.Fatal(err)
}
fmt.Printf("%s\n", decoded)
}
输出:
Hello Gopher!
相关用法
- GO DecodeLastRuneInString用法及代码示例
- GO Decoder.Token用法及代码示例
- GO Decoder.Decode用法及代码示例
- GO DecodeRuneInString用法及代码示例
- GO DecodeRune用法及代码示例
- GO Decode用法及代码示例
- GO Decoder用法及代码示例
- GO DecodeLastRune用法及代码示例
- GO DumpResponse用法及代码示例
- GO DB.QueryRowContext用法及代码示例
- GO Date用法及代码示例
- GO DB.ExecContext用法及代码示例
- GO Dial用法及代码示例
- GO DB.BeginTx用法及代码示例
- GO DumpRequest用法及代码示例
- GO Drawer用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO DumpRequestOut用法及代码示例
- GO Duration用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 DecodeString。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。