doulan9287 2019-02-21 19:01
浏览 1784
已采纳

在Golang中将二进制值作为字符串转换为uint32

Hello i am trying to convert 00000000000000000000000000001011 to uint32 in golang using

var v = "00000000000000000000000000001011"
fmt.Printf("%T
", v)
c := []byte(v)
u := binary.LittleEndian.Uint32(c)

However it is not working.

  • 写回答

2条回答 默认 最新

  • dou47732 2019-02-21 19:16
    关注

    You can't use encoding/binary for this, as that is to serialize and deserialize the (memory) bytes of different values (e.g. numbers). What you have is the base 2 string representation of the number.

    To get its integer value you have to parse it. For that, use strconv.ParseUint():

    s := "00000000000000000000000000001011"
    u, err := strconv.ParseUint(s, 2, 32)
    if err != nil {
        panic(err)
    }
    fmt.Println(u)
    

    This outputs (try it on the Go Playground):

    11
    

    Note that strconv.ParseUint() returns a value of type uint64, so if you need uint32, you have to manually convert it, e.g.:

    u32 := uint32(u)
    

    There are more options for parsing numbers from strings, for an overview, check Convert string to integer type in Go?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵