Go - 如何将二进制字符串转换为二进制字节?

时间:2013-04-08 17:45:54

标签: go type-conversion

我有一个 text 转储文件,string就像这样:

x\x9cK\xb42\xb5\xaa.\xb6\xb2\xb0R\xcaK-\x09J\xccKOU

我需要将它们转换为[]byte

有人可以建议在Go中如何做到这一点? python等效项为decode('string_escape')

2 个答案:

答案 0 :(得分:3)

这是一种做法。请注意,这不是python string_escape格式的完整解码,但考虑到您给出的示例,这可能就足够了。

playground link

package main

import (
    "fmt"
    "log"
    "regexp"
    "strconv"
)

func main() {
    b := []byte(`x\x9cK\xb42\xb5\xaa.\xb6\xb2\xb0R\xcaK-\x09J\xccKOU`)
    re := regexp.MustCompile(`\\x([0-9a-fA-F]{2})`)
    r := re.ReplaceAllFunc(b, func(in []byte) []byte {
        i, err := strconv.ParseInt(string(in[2:]), 16, 64)
        if err != nil {
            log.Fatalf("Failed to convert hex: %s", err)
        }
        return []byte{byte(i)}
    })
    fmt.Println(r)
    fmt.Println(string(r))
}

我确实想过使用json解码器,但不幸的是它不理解\xYY语法。

答案 1 :(得分:3)

以下是您如何编写一个小解析器(如果您将来需要支持其他esc的话):

import (
    "fmt"
    "encoding/hex"
)

func decode(bs string) ([]byte,error) {
    in := []byte(bs)
    res := make([]byte,0)
    esc := false
    for i := 0; i<len(in); i++ {
        switch {
        case in[i] == '\\':
            esc = true
            continue
        case esc:
            switch {
            case in[i] == 'x':
                b,err := hex.DecodeString(string(in[i+1:i+3]))
                if err != nil {
                    return nil,err
                }
                res = append(res, b...)
                i = i+2
            default:
                res = append(res, in[i])
            }
            esc = false
        default:
            res = append(res, in[i])
        }
    }
    return res,nil

}

playground