🌝

Go CommonTechniques

Posted at — Dec 03, 2020
#go

Experiences summary of golang.

Data Conversion

1)int to string

1
2
s := strconv.Itoa(i)
s := strconv.FormatInt(int64(i), 10)

2)int64 to string

1
2
i := int64(123)
s := strconv.FormatInt(i, 10)

3)string to int

1
i, err := strconv.Atoi(s)

4)string to int64

1
i, err := strconv.ParseInt(s, 10, 64)

5)float to string

1
2
v := 3.1415926535
s1 := strconv.FormatFloat(v, 'E', -1, 32)//float32s2 := strconv.FormatFloat(v, 'E', -1, 64)//float64

6)string to float

1
2
3
s := "3.1415926535"
v1, err := strconv.ParseFloat(v, 32)
v2, err := strconv.ParseFloat(v, 64)

Float format

1
2
3
4
5
6
7
8
a:=strconv.FormatFloat(10.100,'f',-1,32)
output:10.1
a := strconv.FormatFloat(10.101, 'f', -1, 64)
output:10.101
a := strconv.FormatFloat(10.010, 'f', -1, 64)
output:10.01
a:=strconv.FormatFloat(10.1,'f',2,64)
output:10.10

fmt

1)Print

Output the content to the standard output

■ Print : standard output

■ Printf : standard output with format

Format
占位符 说明 举例 输出
%v 相应值的默认格式。 Printf("%v", people) {zhangsan}
%+v 打印结构体时,会添加字段名 Printf("%+v", people) {Name:zhangsan}
%#v 相应值的Go语法表示 Printf("#v", people) main.Human{Name:“zhangsan”}
%T 相应值的类型的Go语法表示 Printf("%T", people) main.Human
%% 字面上的百分号,并非值的占位符 Printf("%%") %
%t true 或 false。 Printf("%t", true) true
%b 二进制表示 Printf("%b", 5) 101
%c 相应Unicode码点所表示的字符 Printf("%c", 0x4E2D)
%d 十进制表示 Printf("%d", 0x12) 18
%o 八进制表示 Printf("%d", 10) 12
%q 单引号围绕的字符字面值,由Go语法安全地转义 Printf("%q", 0x4E2D) ‘中’
%x 十六进制表示,字母形式为小写 a-f Printf("%x", 13) d
%X 十六进制表示,字母形式为大写 A-F Printf("%x", 13) D
%U Unicode格式:U+1234,等同于 “U+%04X” Printf("%U", 0x4E2D) U+4E2D
字符串与字节切片
占位符 说明 举例 输出
%s 输出字符串表示(string类型或[]byte) Printf("%s", []byte(“Go语言”)) Go语言
%q 双引号围绕的字符串,由Go语法安全地转义 Printf("%q", “Go语言”) “Go语言”
%x 十六进制,小写字母,每字节两个字符 Printf("%x", “golang”) 676f6c616e67
%X 十六进制,大写字母,每字节两个字符 Printf("%X", “golang”) 676F6C616E67
其它标记
占位符 说明 举例 输出
+ 总打印数值的正负号;对于%q(%+q)保证只输出ASCII编码的字符。 Printf("%+q", “中文”) “\u4e2d\u6587”
- 在右侧而非左侧填充空格(左对齐该区域)
# 备用格式:为八进制添加前导 0(%#o) Printf("%#U", ‘中’) U+4E2D
0 填充前导的0而非空格;对于数字,这会将填充移到正负号之后

■ Println : standard output with /n

2)Fprint

Input data to io.Writer which is the interface that usually used to write content to a file.

■ Fprintln :

1
2
3
4
5
6
fmt.Fprintln(os.Stdout, "input content")
fileObj, err := os.OpenFile("./xx.txt", os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0644)
if err != nil {
	fmt.Println("open file error:", err)
	return
}

■ Fprintf :

1
fmt.Fprintf(fileObj, "input data to file:%s", "xxx")

3)Sprint

Convert input data to string