在處理超出內建整數類型容量的數字時,將十六進位字串轉換為十進制數字可能是一個挑戰。 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中文網其他相關文章!