convert string to uint in go lang
Package strconv func ParseUint func ParseUint(s string, base int, bitSize int) (n uint64, err error) ParseUint is like ParseInt but for unsigned numbers. func ParseInt func ParseInt(s string, base int, bitSize int) (i int64, err error) ParseInt interprets a string s in the given base (2 to 36) and returns the corresponding value i. If … Read more