Golang : Find the length of big.Int variable example
There is a chance that you will ever need to get the length of big.Int
variable and below is a simple example on how to count the length of a big.Int
variable.
package main
import (
"fmt"
"math/big"
)
func main() {
// base 10
bigInteger := new(big.Int)
bigInteger.SetString("100000000000000000L", 10) //18
fmt.Println("Value : ", bigInteger)
fmt.Println("Length : ", len(bigInteger.Text(10)))
}
Output:
Value : 100000000000000000
Length : 18
Reference:
https://www.socketloop.com/tutorials/golang-convert-string-or-integer-to-big-int-type
See also : Golang : Calculate Relative Strength Index(RSI) example
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.4k Golang : Lock executable to a specific machine with unique hash of the machine
+10.9k Golang : Characters limiter example
+5.5k Golang : Use NLP to get sentences for each paragraph example
+8.7k Golang : Apply Histogram Equalization to color images
+19.4k Golang : How to run your code only once with sync.Once object
+6.8k Golang : Transform lisp or spinal case to Pascal case example
+7k Golang : Process json data with Jason package
+5k Golang : Return multiple values from function
+9.7k Golang : Print how to use flag for your application example
+13.1k Golang : reCAPTCHA example
+7.5k Golang : Handle Palindrome string with case sensitivity and unicode
+34.8k Golang : Strip slashes from string example