0

假设我想在 Go 中填充一个数字:

4 => "004"
23 => "023"

我该怎么做?

4

1 回答 1

12

使用fmt 包中的"%0xd"标志 to ,其中是要填充的前导零的数量。fmt.Printfx

import "fmt"
fmt.Printf("%03d", 4)    // will print "004"

界面与 C 中的相同。

于 2013-04-28T03:06:06.323 回答