go数字转指定位数字符串,自动补0

go数字转指定位数字符串,自动补0

go 数字转指定位数字符串,自动补 0

个人博客地址

go 数字转指定位数字符串,自动补 0 - 个人博客 (jxy.xj.cn)

var i=1
//转4位数字符串,不足前补0
newStr:=fmt.Sprintf("%04d", i)
fmt.Println(newStr)// 0001
var i=11
//转4位数字符串,不足前补0
newStr:=fmt.Sprintf("%04d", i)
fmt.Println(newStr)// 0011