Golang的strconv包主要实现字符串和基本数据类型之间的转换
strconv.AtoiParseInt的便捷版,相当于ParseInt(s, 10, 0)。
注意如果字符串中没有数字默认输出为int的0,
处理逻辑为将字符串拆分为数组处理具体可以查询源码
使用参考
https://www.geeksforgeeks.org/strconv-atoi-function-in-golang-with-examples/
Golang的strconv包主要实现字符串和基本数据类型之间的转换
strconv.AtoiParseInt的便捷版,相当于ParseInt(s, 10, 0)。
注意如果字符串中没有数字默认输出为int的0,
处理逻辑为将字符串拆分为数组处理具体可以查询源码
使用参考
https://www.geeksforgeeks.org/strconv-atoi-function-in-golang-with-examples/