This article is a mirror article of machine translation, please click here to jump to the original article.

View: 7380|Reply: 0

Golang in String and Int types are converted to each other

[Copy link]
Posted on 9/16/2019 3:28:41 PM | | |
Summarizes how strings and various int types are converted to each other in golang:

string to int:int, err := strconv. Atoi(string)

string to int64:
int64, err := strconv. ParseInt(string, 10, 64)

int to string:
string := strconv. Itoa(int)
Itoa is actually implemented with FromatInt
func Itoa(i int) string {
return FormatInt(int64(i), 10)
}


int64 to string:
string := strconv. FormatInt(int64,10)







Previous:Excel Efficiency Manual - Finish early, no overtime
Next:Windows Golang Getting Started Tutorial
Disclaimer:
All software, programming materials or articles published by Code Farmer Network are only for learning and research purposes; The above content shall not be used for commercial or illegal purposes, otherwise, users shall bear all consequences. The information on this site comes from the Internet, and copyright disputes have nothing to do with this site. You must completely delete the above content from your computer within 24 hours of downloading. If you like the program, please support genuine software, purchase registration, and get better genuine services. If there is any infringement, please contact us by email.

Mail To:help@itsvse.com