仅作记录,以便以后用到时查看方便。
字符串与整形:
//string to 10进制int64 i,err := strconv.ParseInt(string,10,64) //int64 to string fmt.Sprintf("%d",int64)//我一般用这种方式 s := strconv.FormatInt(int64,10)//查找资料后得知这种方式比较正规 //string to int i,err := strconv.Atoi(string) //int to string s := strconv.Itoa(int)原文链接:https://www.f2er.com/go/190290.html