英文:
How do I pad a number with zeros?
问题
让我们假设我想在Go中填充一个数字:
4 => "004"
23 => "023"
我该如何做到这一点?
英文:
Let's say I want to pad out a number in Go:
4 => "004"
23 => "023"
How can I do it?
答案1
得分: 12
使用"%0xd"
标志来自fmt包的fmt.Printf
,其中x
是要填充的前导零的数量。
import "fmt"
fmt.Printf("%03d", 4) // 将打印"004"
接口与C中的相同。
英文:
Use the "%0xd"
flag to fmt.Printf
from the fmt package, where x
is the number of leading zeros to pad.
import "fmt"
fmt.Printf("%03d", 4) // will print "004"
The interface is the same as in C.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论