首頁 > 後端開發 > Golang > 如何處理大於 Go 內建整數類型的十六進位字串?

如何處理大於 Go 內建整數類型的十六進位字串?

Patricia Arquette
發布: 2024-12-15 18:08:09
原創
694 人瀏覽過

How to Handle Hexadecimal Strings Larger Than Go's Built-in Integer Types?

如何在Go 中解析超大的十六進位字串

在處理超出內建整數類型容量的數字時,將十六進位字串轉換為十進制數字可能是一個挑戰。 Golang 透過其 math/big 套件提供了強大的解決方案。

將十六進位字串轉換為大整數

要將十六進位字串轉換為 big.Int,請使用 SetIntString 方法。

package main

import "math/big"

func main() {
    // Example hexadecimal string
    hexString := "0x00000000000000000000000000000000000000000000d3c21bcecceda1000000"

    // Create a new big.Int
    i := new(big.Int)

    // Convert the hexadecimal string to a big.Int
    i.SetString(hexString, 16)

    // Print the converted number
    println(i)
}
登入後複製

截斷十進位表示法

轉換後十六進位字串轉換為 big.Int,您可以使用 Truncate 方法截斷十進位表示法。例如:

func Truncate(x *big.Int, prec uint) {
    f := new(big.Float).SetInt(x)

    f.SetPrec(int64(prec))
    f.Int(x)
}
登入後複製

此函數將 big.Float 的精確度設定為所需的小數位數,然後再轉換回 big.Int。

使用範例

您可以使用 fmt 套件來解析並格式化 big.Int 值:

package main

import "fmt"

func main() {
    hexString := "0x000000d3c21bcecceda1000000"

    // Create a new big.Int
    i := new(big.Int)

    // Parse the hexadecimal string
    fmt.Sscan(hexString, i)

    // Alternatively, you can use fmt.Sscanf
    // fmt.Sscanf(hexString, "0x%x", i)

    // Truncate to 18 decimal places
    Truncate(i, 18)

    // Marshal to JSON
    jsonBytes, _ := i.MarshalJSON()
    fmt.Println(string(jsonBytes))
}
登入後複製

以上是如何處理大於 Go 內建整數類型的十六進位字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板