Strconv
07.Strconv
01.string与int类型转换
1.0 strconv包介绍
- strconv包实现了基本数据类型与其字符串表示的转换
- 主要有以下常用函数: Atoi()、Itia()、parse系列、format系列、append系列。
- 更多函数请查看官方文档 (opens new window)。
1.1 Atoi()转int
Atoi()
函数用于将字符串类型的整数转换为int类型,函数签名如下。
1.2 Itoa()转str
Itoa()
函数用于将int类型数据转换为对应的字符串表示
1.3 string转字符
02.Parse系列函数
1.1 ParseInt()
1.2 ParseFloat()
1.3 ParseBool()
03.Format系列函数
- Format系列函数实现了将给定类型数据格式化为string类型数据的功能
Strconv
http://coderedeng.github.io/2022/05/31/Go常用库介绍 - Strconv/